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

<<11121314151617181920>>

  /external/llvm/test/DebugInfo/PDB/Inputs/
symbolformat.cpp 9 Value,
14 Value,
68 TestEnum Enum = Value;
  /external/proguard/src/proguard/evaluation/value/
Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated value.
28 public abstract class Value
44 * Returns this Value as a Category1Value.
48 throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a Category 1 value [" + this.getClass().getName() + "]");
52 * Returns this Value as a Category2Value.
56 throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a Category 2 value [" + this.getClass().getName() + "]");
61 * Returns this Value as an IntegerValue
    [all...]
  /external/proguard/src/proguard/optimize/
ConstantMemberFilter.java 26 import proguard.evaluation.value.Value;
59 Value value = StoringInvocationUnit.getFieldValue(programField); local
60 if (value != null &&
61 value.isParticular())
70 Value value = StoringInvocationUnit.getMethodReturnValue(programMethod); local
71 if (value != null &&
72 value.isParticular()
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
SimpleEnumArrayPropagator.java 26 import proguard.evaluation.value.*;
30 * This ClassVisitor propagates the value of the $VALUES field to the values()
43 private Value array;
50 // Update the return value of the "int[] values()" method.
64 // Set the array value with the found array length. We can't use
66 Value propagatedArray =
86 private static void setMethodReturnValue(Method method, Value value)
91 info.setReturnValue(value);
  /external/protobuf/src/google/protobuf/
descriptor_database.h 161 template <typename Value>
167 Value value);
168 bool AddSymbol(const string& name, Value value);
170 Value value);
172 Value value);
174 Value FindFile(const string& filename)
    [all...]
  /external/v8/src/extensions/
trigger-failure-extension.cc 41 const v8::FunctionCallbackInfo<v8::Value>& args) {
47 const v8::FunctionCallbackInfo<v8::Value>& args) {
53 const v8::FunctionCallbackInfo<v8::Value>& args) {
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor_database.h 160 template <typename Value>
166 Value value);
167 bool AddSymbol(const string& name, Value value);
169 Value value);
171 Value value);
173 Value FindFile(const string& filename)
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor_database.h 160 template <typename Value>
166 Value value);
167 bool AddSymbol(const string& name, Value value);
169 Value value);
171 Value value);
173 Value FindFile(const string& filename)
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
descriptor_database.h 160 template <typename Value>
166 Value value);
167 bool AddSymbol(const string& name, Value value);
169 Value value);
171 Value value);
173 Value FindFile(const string& filename)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor_database.h 161 template <typename Value>
167 Value value);
168 bool AddSymbol(const string& name, Value value);
170 Value value);
172 Value value);
174 Value FindFile(const string& filename)
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
descriptor_database.h 160 template <typename Value>
166 Value value);
167 bool AddSymbol(const string& name, Value value);
169 Value value);
171 Value value);
173 Value FindFile(const string& filename)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderOperatorTests.cpp 234 struct Value
236 Value (ValueType valueType_, float rangeMin_, float rangeMax_)
257 BuiltinFuncInfo (const char* caseName_, const char* shaderFuncName_, ValueType outValue_, Value input0_, Value input1_, Value input2_, float resultScale_, float resultBias_, deUint32 precisionMask_, ShaderEvalFunc evalFuncScalar_, ShaderEvalFunc evalFuncVec2_, ShaderEvalFunc evalFuncVec3_, ShaderEvalFunc evalFuncVec4_, OperationType type_=FUNCTION, bool isUnaryPrefix_=true)
279 Value input0;
280 Value input1;
281 Value input2;
293 static inline BuiltinFuncInfo BuiltinOperInfo (const char* caseName_, const char* shaderFuncName_, ValueType outValue_, Value input0_, Value input1_, Value input2_, float resultScale_, float resultBias_, deUint32 precisionMask_, ShaderEval (…)
    [all...]
  /external/clang/lib/CodeGen/
CGCXXABI.h 24 class Value;
55 llvm::Value *getThisValue(CodeGenFunction &CGF) {
65 /// Get a null value for unsupported member pointers.
71 llvm::Value *&getStructorImplicitParamValue(CodeGenFunction &CGF) {
146 /// adjusted value.
147 virtual llvm::Value *EmitLoadOfMemberFunctionPointer(
149 llvm::Value *&ThisPtrForCall, llvm::Value *MemPtr,
152 /// Calculate an l-value from an object and a data member pointer.
153 virtual llvm::Value *
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 33 typedef DenseMap<BasicBlock*, Value*> AvailableValsTy;
58 void SSAUpdater::AddAvailableValue(BasicBlock *BB, Value *V) {
66 SmallDenseMap<BasicBlock*, Value*, 8> &ValueMapping) {
81 Value *SSAUpdater::GetValueAtEndOfBlock(BasicBlock *BB) {
82 Value *Res = GetValueAtEndOfBlockInternal(BB);
86 Value *SSAUpdater::GetValueInMiddleOfBlock(BasicBlock *BB) {
94 SmallVector<std::pair<BasicBlock*, Value*>, 8> PredValues;
95 Value *SingularValue = nullptr;
103 Value *PredVal = GetValueAtEndOfBlock(PredBB);
116 Value *PredVal = GetValueAtEndOfBlock(PredBB)
    [all...]
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 34 ConcreteCallbackVH(Value *V) : CallbackVH(V) {}
43 // Make sure I can call a method on the underlying Value. It
63 // Cast to Value* so comparisons work.
64 Value *BV = BitcastV.get();
65 Value *CV = ConstantV;
97 Value *null_value = nullptr;
109 AssertingVH<Value> GenericAVH(BitcastV.get());
128 AssertingVH<Value> BitcastAVH(BitcastV.get());
129 AssertingVH<Value> ConstantAVH(ConstantV);
141 // Cast to Value* so comparisons work
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 37 /// The default value of shadow is 0, which means "clean" (not poisoned).
52 /// They are stored in a second shadow mapping, one 4-byte value for 4 bytes
58 /// value associated with them. If these bytes contain uninitialized data
64 /// avoids storing origin to memory when a fully initialized value is stored.
70 /// Ideally, every atomic store of application value should update the
81 /// ordered such that the load will get either the value that was stored, or
82 /// some later value (which is always clean).
89 /// value. It implements the store part as a simple atomic store by storing a
332 /// \brief Thread-local shadow storage for function return value.
334 /// \brief Thread-local origin storage for function return value
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysisEvaluator.cpp 41 static StringRef getName(Value *V) {
48 static void insertIfNamed(SetVector<Value *> &Values, Value *V) {
55 SetVector<Value *> Values;
71 for (Value *V1 : Values) {
73 for (Value *V2 : Values) {
  /external/v8/include/
v8.h 110 class Value;
198 * whenever an object moves. Handles should always be passed by value
211 * a Local<Object>); the value will still be governed by a handle
489 * the v8 engine which holds an object value and which is updated by
908 internal::Object* value);
913 internal::Object* value);
938 * which will be later filled with the escape value.
946 * Pushes the value into the previous scope and returns a handle to it.
950 V8_INLINE Local<T> Escape(Local<T> value) {
952 Escape(reinterpret_cast<internal::Object**>(*value));
6496 T value; member in class:v8::Maybe
7762 O* value = I::ReadField<O*>(obj, offset); local
7810 void* value = I::ReadField<void*>(obj, I::kStringResourceOffset); local
7832 void* value = I::ReadField<void*>(obj, I::kStringResourceOffset); local
    [all...]
  /external/webrtc/talk/app/webrtc/
statstypes.cc 34 // TODO(tommi): Could we have a static map of value name -> expected type
232 StatsReport::Value::Value(StatsValueName name, int64_t value, Type int_type)
235 type_ == kInt ? value_.int_ = static_cast<int>(value) : value_.int64_ = value;
238 StatsReport::Value::Value(StatsValueName name, float f)
243 StatsReport::Value::Value(StatsValueName name, const std::string& value
    [all...]
  /external/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 48 void setPrefix(std::string Value) { Prefix = Value; }
  /external/clang/lib/Basic/
Sanitizers.cpp 20 SanitizerMask clang::parseSanitizerValue(StringRef Value, bool AllowGroups) {
21 SanitizerMask ParsedKind = llvm::StringSwitch<SanitizerMask>(Value)
  /external/clang/test/Index/
index-templates.cpp 3 template<typename T, T Value, template<typename U, U ValU> class X>
4 void f(X<T, Value> x);
44 template<typename T, Unsigned Value>
91 template<typename Key, typename Value,
92 typename Comparison = compare<Pair<Key, Value> >,
93 typename Allocator = allocator<Pair<Key, Value> > >
107 void foo(T Value) {}
111 void foo<float, 9, FxnTmplEnum_B, FxnTmpl_Var + 7>(float Value);
119 // CHECK-LOAD: index-templates.cpp:3:24: NonTypeTemplateParameter=Value:3:24 (Definition) Extent=[3:22 - 3:29]
125 // CHECK-LOAD: index-templates.cpp:4:13: DeclRefExpr=Value:3:24 Extent=[4:13 - 4:18
    [all...]
  /external/clang/test/SemaCXX/
compound-literal.cpp 86 template<unsigned> struct Value { };
88 int &check_narrowed(Value<sizeof((T){1.1})>);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionRegistry.java 22 import com.google.clearsilver.jsilver.values.Value;
43 public Value executeFunction(String name, Value... args) {
48 Value result = function.execute(args);
50 throw new JSilverInterpreterException("Function " + name + " did not return value");
91 * filtered value.
102 public Value execute(Value... args) {
124 for (Value arg : args) {
131 return Value.literalValue(out.toString(), mode, isPartiallyEscaped)
    [all...]
  /external/libweave/src/test/
unittest_utils.cc 14 std::unique_ptr<base::Value> CreateValue(const std::string& json) {
20 std::unique_ptr<base::Value> value{
24 CHECK(value) << "Failed to load JSON: " << message << ", " << json;
25 return value;
28 std::string ValueToString(const base::Value& value) {
31 value, base::JSONWriter::OPTIONS_PRETTY_PRINT, &json);
37 std::unique_ptr<base::Value> value = CreateValue(json) local
    [all...]

Completed in 4984 milliseconds

<<11121314151617181920>>