HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 101 - 125 of 3670) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/include/llvm/Transforms/Utils/
GlobalStatus.h 16 class Value;
45 /// This global is stored to, but only its initializer and one other value
46 /// is ever stored to it. If this global isStoredOnce, we track the value
56 /// If only one value (besides the initializer constant) is ever stored to
57 /// this global, keep track of what value it is.
58 Value *StoredOnceValue;
76 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
SimplifyLibCalls.h 19 class Value;
40 /// optimal value to replace the instruction with or 0 if a more
41 /// optimal form can't be found. Note that the returned value may
45 Value *optimizeCall(CallInst *CI);
50 virtual void replaceAllUsesWith(Instruction *I, Value *With) const;
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 26 class Value;
37 virtual void enterContext(Value *Left, Value *Right) = 0;
58 DiffContext(Value *L, Value *R)
60 Value *L;
61 Value *R;
64 DenseMap<Value*,unsigned> LNumbering;
65 DenseMap<Value*,unsigned> RNumbering;
73 void printValue(Value *V, bool isL)
    [all...]
  /external/chromium_org/tools/gn/
function_foreach.cc 35 " the loop variable will no longer be in scope, and the previous value\n"
49 Value RunForEach(Scope* scope,
57 return Value();
64 return Value();
66 base::StringPiece loop_var(identifier->value().value());
69 Value value_storage_for_exec; // Backing for list_value when we need to exec.
70 const Value* list_value = NULL;
73 list_value = scope->GetValue(list_identifier->value().value(), true)
    [all...]
function_set_default_toolchain.cc 46 Value RunSetDefaultToolchain(Scope* scope,
48 const std::vector<Value>& args,
54 return Value();
62 return Value();
68 return Value();
72 return Value();
75 return Value();
function_set_defaults.cc 43 Value RunSetDefaults(Scope* scope,
45 const std::vector<Value>& args,
49 return Value();
70 return Value();
75 return Value();
82 return Value();
89 return Value();
function_template.cc 10 #include "tools/gn/value.h"
148 Value RunTemplate(Scope* scope,
150 const std::vector<Value>& args,
158 return Value();
160 if (!args[0].VerifyTypeIs(Value::STRING, err))
161 return Value();
170 return Value();
174 return Value();
  /art/compiler/llvm/
runtime_support_builder_arm.h 31 virtual ::llvm::Value* EmitGetCurrentThread();
32 virtual ::llvm::Value* EmitLoadFromThreadOffset(int64_t offset, ::llvm::Type* type,
34 virtual void EmitStoreToThreadOffset(int64_t offset, ::llvm::Value* value,
36 virtual ::llvm::Value* EmitSetCurrentThread(::llvm::Value* thread);
runtime_support_builder_x86.h 31 virtual ::llvm::Value* EmitGetCurrentThread();
32 virtual ::llvm::Value* EmitLoadFromThreadOffset(int64_t offset, ::llvm::Type* type,
34 virtual void EmitStoreToThreadOffset(int64_t offset, ::llvm::Value* value,
36 virtual ::llvm::Value* EmitSetCurrentThread(::llvm::Value* thread);
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api.h 19 class Value;
34 virtual base::Value* ExtensionToBrowserPref(const base::Value* extension_pref,
37 virtual base::Value* BrowserToExtensionPref(
38 const base::Value* browser_pref) OVERRIDE;
  /external/chromium_org/extensions/renderer/
event_bindings.h 30 void AttachEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
37 void DetachEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
44 void AttachFilteredEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
50 void DetachFilteredEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
52 void MatchAgainstEventFilter(const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/
AbsFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
26 * Returns the absolute value of the numeric expressions.
31 * @param args Single numeric value
32 * @return Absolute value
34 public Value execute(Value... args) {
35 Value arg = args[0];
  /external/llvm/include/llvm/IR/
LeakDetector.h 30 class Value;
66 /// Overload the normal methods to work better with Value*'s because they are
70 static void addGarbageObject(const Value *Object) {
75 static void removeGarbageObject(const Value *Object) {
83 static void addGarbageObjectImpl(const Value *Object);
84 static void removeGarbageObjectImpl(const Value *Object);
IntrinsicInst.h 53 static inline bool classof(const Value *V) {
72 static inline bool classof(const Value *V) {
76 static Value *StripCast(Value *C);
83 Value *getAddress() const;
90 static inline bool classof(const Value *V) {
95 /// DbgValueInst - This represents the llvm.dbg.value instruction.
99 const Value *getValue() const;
100 Value *getValue();
103 const_cast<Value*>(getArgOperand(1)))->getZExtValue()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 49 // scratch value for a single assignment:
52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 49 // scratch value for a single assignment:
52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
EnumClass.h 90 typedef enum Definition::Enums Value;
93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
104 ALWAYS_INLINE bool operator==(const Value value) { return m_value == value; }
105 ALWAYS_INLINE bool operator!=(const Value value) { return m_value != value;
    [all...]
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
Path2D.h 28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args);
34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args);
35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
38 const v8::FunctionCallbackInfo<v8::Value>& args);
39 static void BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
40 static void Arc(const v8::FunctionCallbackInfo<v8::Value>& args);
41 static void Rect(const v8::FunctionCallbackInfo<v8::Value>& args);
42 static void Oval(const v8::FunctionCallbackInfo<v8::Value>& args);
43 static void ConicTo(const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]
  /art/runtime/base/
histogram-inl.h 31 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
32 CHECK_GE(value, static_cast<Value>(0));
33 if (value >= max_) {
34 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_;
39 BucketiseValue(value);
226 double value = lower_value + (upper_value - lower_value) * local
    [all...]
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 82 void setAvailableFeatures(uint64_t Value) { AvailableFeatures = Value; }
85 void setUseMarkup(bool Value) { UseMarkup = Value; }
92 void setPrintImmHex(bool Value) { PrintImmHex = Value; }
95 void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
98 format_object1<int64_t> formatImm(const int64_t Value) const { return PrintImmHex ? formatHex(Value) : formatDec(Value);
    [all...]
  /bootable/recovery/edify/
expr.h 34 // uses this value.
55 } Value;
57 typedef Value* (*Function)(const char* name, State* state,
69 // evaluate it, return the resulting Value. The caller takes
70 // ownership of the returned Value.
71 Value* EvaluateValue(State* state, Expr* expr);
81 Value* Literal(const char* name, State* state, int argc, Expr* argv[]);
86 Value* ConcatFn(const char* name, State* state, int argc, Expr* argv[]);
87 Value* LogicalAndFn(const char* name, State* state, int argc, Expr* argv[]);
88 Value* LogicalOrFn(const char* name, State* state, int argc, Expr* argv[])
    [all...]
  /external/jsoncpp/include/json/
writer.h 10 # include "value.h"
17 class Value;
26 virtual std::string write( const Value &root ) = 0;
29 /** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format without formatting (not human friendly).
33 * \sa Reader, Value
44 virtual std::string write( const Value &root );
47 void writeValue( const Value &value );
53 /** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a human friendly way.
56 * - Object value
    [all...]
  /external/chromium_org/gin/
converter.cc 19 using v8::Value;
23 Handle<Value> Converter<bool>::ToV8(Isolate* isolate, bool val) {
24 return Boolean::New(isolate, val).As<Value>();
27 bool Converter<bool>::FromV8(Isolate* isolate, Handle<Value> val, bool* out) {
32 Handle<Value> Converter<int32_t>::ToV8(Isolate* isolate, int32_t val) {
33 return Integer::New(isolate, val).As<Value>();
36 bool Converter<int32_t>::FromV8(Isolate* isolate, Handle<Value> val,
44 Handle<Value> Converter<uint32_t>::ToV8(Isolate* isolate, uint32_t val) {
45 return Integer::NewFromUnsigned(isolate, val).As<Value>();
48 bool Converter<uint32_t>::FromV8(Isolate* isolate, Handle<Value> val
    [all...]
  /external/chromium_org/third_party/webrtc/base/
json.cc 19 bool GetStringFromJson(const Json::Value& in, std::string* out) {
40 bool GetIntFromJson(const Json::Value& in, int* out) {
60 bool GetUIntFromJson(const Json::Value& in, unsigned int* out) {
80 bool GetBoolFromJson(const Json::Value& in, bool* out) {
101 bool GetDoubleFromJson(const Json::Value& in, double* out) {
122 bool JsonArrayToVector(const Json::Value& value,
123 bool (*getter)(const Json::Value& in, T* out),
126 if (!value.isArray()) {
130 for (Json::Value::ArrayIndex i = 0; i < value.size(); ++i)
294 std::string value = w.write(json); local
    [all...]
  /external/llvm/unittests/ADT/
ilistTest.cpp 21 int Value;
24 Node(int _Value) : Value(_Value) {}
25 ~Node() { Value = -1; }
31 EXPECT_EQ(1, List.back().Value);
36 EXPECT_EQ(2, List.back().Value);
37 EXPECT_EQ(2, List.front().getNextNode()->Value);
38 EXPECT_EQ(1, List.back().getPrevNode()->Value);
41 EXPECT_EQ(2, ConstList.back().Value);
42 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
43 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
    [all...]

Completed in 1342 milliseconds

1 2 3 45 6 7 8 91011>>