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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8ThrowException.h 36 static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
40 static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*);
42 static v8::Handle<v8::Value> throwDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
46 static v8::Handle<v8::Value> throwDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*);
48 static v8::Handle<v8::Value> throwException(v8::Handle<v8::Value>, v8::Isolate*);
50 static v8::Handle<v8::Value> createGeneralError(const String&, v8::Isolate*);
51 static v8::Handle<v8::Value> throwGeneralError(const String&, v8::Isolate*);
52 static v8::Handle<v8::Value> createTypeError(const String&, v8::Isolate*);
53 static v8::Handle<v8::Value> throwTypeError(const String&, v8::Isolate*)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8DedicatedWorkerGlobalScopeCustom.cpp 40 void V8DedicatedWorkerGlobalScope::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
V8LocationCustom.cpp 36 void V8Location::valueOfMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
V8MessagePortCustom.cpp 40 void V8MessagePort::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
V8WorkerCustom.cpp 40 void V8Worker::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
V8HTMLPlugInElementCustom.cpp 50 void getScriptableObjectProperty(PropertyType property, const v8::PropertyCallbackInfo<v8::Value>& info)
61 TONATIVE_VOID(v8::Local<v8::Value>, value, instance->Get(property));
65 if (value->IsUndefined())
68 v8SetReturnValue(info, value);
72 void callNpObjectSetter(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
74 npObjectSetNamedProperty(self, name, value, info);
77 void callNpObjectSetter(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8ServiceWorkerClientCustom.cpp 14 void V8ServiceWorkerClient::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
V8ServiceWorkerCustom.cpp 14 void V8ServiceWorker::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPath.h 46 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
49 virtual Value::Type resultType() const OVERRIDE { return Value::NodeSetValue; }
61 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
62 void setAbsolute(bool value) { m_absolute = value; setIsContextNodeSensitive(!m_absolute); }
68 virtual Value::Type resultType() const OVERRIDE { return Value::NodeSetValue; }
80 virtual Value evaluate(EvaluationContext&) const OVERRIDE;
83 virtual Value::Type resultType() const OVERRIDE { return Value::NodeSetValue;
    [all...]
  /external/chromium_org/tools/gn/
operators.h 14 class Value;
25 Value ExecuteUnaryOperator(Scope* scope,
27 const Value& value,
29 Value ExecuteBinaryOperator(Scope* scope,
value_extractors.h 19 class Value;
22 bool ExtractListOfStringValues(const Value& value,
28 const Value& value,
35 const Value& value,
42 bool ExtractListOfLabels(const Value& value,
52 bool ExtractListOfUniqueLabels(const Value& value
    [all...]
value.cc 5 #include "tools/gn/value.h"
11 Value::Value()
18 Value::Value(const ParseNode* origin, Type t)
25 Value::Value(const ParseNode* origin, bool bool_val)
32 Value::Value(const ParseNode* origin, int64 int_val)
39 Value::Value(const ParseNode* origin, std::string str_val
    [all...]
function_get_target_outputs.cc 11 #include "tools/gn/value.h"
34 "Return value\n"
71 Value RunGetTargetOutputs(Scope* scope,
73 const std::vector<Value>& args,
77 return Value();
84 return Value();
93 return Value();
105 return Value();
116 return Value();
129 return Value();
    [all...]
  /external/clang/include/clang/AST/
GlobalDecl.h 29 llvm::PointerIntPair<const Decl*, 2> Value;
35 Value.setPointer(D);
48 : Value(D, Type) {}
50 : Value(D, Type) {}
54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
55 CanonGD.Value.setInt(Value.getInt());
60 const Decl *getDecl() const { return Value.getPointer(); }
64 return static_cast<CXXCtorType>(Value.getInt())
121 static const bool value = true; member in struct:llvm::isPodLike
    [all...]
  /external/llvm/include/llvm/IR/
ValueHandle.h 1 //===- ValueHandle.h - Value Smart Pointer classes --------------*- C++ -*-===//
19 #include "llvm/IR/Value.h"
36 /// ValueHandleBase - This is the common base class of value handles.
37 /// ValueHandle's are smart pointers to Value's that have special behavior when
38 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles
42 friend class Value;
58 // A subclass may want to store some information along with the value
59 // pointer. Allow them to do this by making the value pointer a pointer-int
62 PointerIntPair<Value*, 2> VP;
68 ValueHandleBase(HandleBaseKind Kind, Value *V
259 static const bool value = true; member in struct:llvm::isPodLike
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 28 /** \brief Type of the value held by a Value object.
32 nullValue = 0, ///< 'null' value
33 intValue, ///< signed integer value
34 uintValue, ///< unsigned integer value
35 realValue, ///< double value
36 stringValue, ///< UTF-8 string value
37 booleanValue, ///< bool value
38 arrayValue, ///< array value (ordered list)
39 objectValue ///< object value (collection of name/value pairs)
    [all...]
  /external/jsoncpp/chromium-overrides/include/json/
value.h 28 /** \brief Type of the value held by a Value object.
32 nullValue = 0, ///< 'null' value
33 intValue, ///< signed integer value
34 uintValue, ///< unsigned integer value
35 realValue, ///< double value
36 stringValue, ///< UTF-8 string value
37 booleanValue, ///< bool value
38 arrayValue, ///< array value (ordered list)
39 objectValue ///< object value (collection of name/value pairs)
    [all...]
  /external/jsoncpp/include/json/
value.h 28 /** \brief Type of the value held by a Value object.
32 nullValue = 0, ///< 'null' value
33 intValue, ///< signed integer value
34 uintValue, ///< unsigned integer value
35 realValue, ///< double value
36 stringValue, ///< UTF-8 string value
37 booleanValue, ///< bool value
38 arrayValue, ///< array value (ordered list)
39 objectValue ///< object value (collection of name/value pairs)
    [all...]
  /external/chromium_org/chrome/browser/policy/
configuration_policy_handler_list_factory.cc 68 base::Value::TYPE_STRING },
71 base::Value::TYPE_BOOLEAN },
74 base::Value::TYPE_LIST },
77 base::Value::TYPE_BOOLEAN },
80 base::Value::TYPE_BOOLEAN },
83 base::Value::TYPE_BOOLEAN },
86 base::Value::TYPE_BOOLEAN },
89 base::Value::TYPE_BOOLEAN },
92 base::Value::TYPE_BOOLEAN },
95 base::Value::TYPE_BOOLEAN }
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 76 uint64_t Value = decodeULEB128(Data + Offset, &Length);
78 return Value;
103 SW.printString("Value", ParseString(Data, Offset));
106 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value,
112 SW.printNumber("Value", Value);
127 uint64_t Value = ParseInteger(Data, Offset);
129 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr;
130 PrintAttribute(Tag, Value, ValueDesc)
    [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 31 /// \brief The returned value is undefined.
33 /// \brief The returned value is numeric_limits<T>::max()
35 /// \brief The returned value is numeric_limits<T>::digits
254 /// Hi_32 - This function returns the high 32 bits of a 64 bit value.
255 inline uint32_t Hi_32(uint64_t Value) {
256 return static_cast<uint32_t>(Value >> 32);
259 /// Lo_32 - This function returns the low 32 bits of a 64 bit value.
260 inline uint32_t Lo_32(uint64_t Value) {
261 return static_cast<uint32_t>(Value);
337 inline bool isMask_32(uint32_t Value) {
    [all...]
  /external/chromium_org/content/renderer/
v8_value_converter_impl.h 19 class Value;
34 virtual v8::Handle<v8::Value> ToV8Value(
35 const base::Value* value,
37 virtual base::Value* FromV8Value(
38 v8::Handle<v8::Value> value,
46 v8::Local<v8::Value> ToV8ValueImpl(v8::Isolate* isolate,
48 const base::Value* value) const
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 34 static Value *generateSignedRemainderCode(Value *Dividend, Value *Divisor,
58 Value *DividendSign = Builder.CreateAShr(Dividend, Shift);
59 Value *DivisorSign = Builder.CreateAShr(Divisor, Shift);
60 Value *DvdXor = Builder.CreateXor(Dividend, DividendSign);
61 Value *DvsXor = Builder.CreateXor(Divisor, DivisorSign);
62 Value *UDividend = Builder.CreateSub(DvdXor, DividendSign);
63 Value *UDivisor = Builder.CreateSub(DvsXor, DivisorSign);
64 Value *URem = Builder.CreateURem(UDividend, UDivisor)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 26 * Dynamic typing system used by JSilver interpreter. A value (e.g. "2") can act as a string,
30 public abstract class Value {
32 private static final Map<EscapeMode, Value> EMPTY_PART_ESCAPED;
33 private static final Map<EscapeMode, Value> EMPTY_UNESCAPED;
34 private static final Map<EscapeMode, Value> ZERO_PART_ESCAPED;
35 private static final Map<EscapeMode, Value> ZERO_UNESCAPED;
36 private static final Map<EscapeMode, Value> ONE_PART_ESCAPED;
37 private static final Map<EscapeMode, Value> ONE_UNESCAPED;
40 // Currently a Value's EscapeMode is either ESCAPE_NONE (no escaping) or
44 EMPTY_PART_ESCAPED = new HashMap<EscapeMode, Value>(2)
    [all...]
  /external/chromium_org/cc/debug/
unittest_only_benchmark_impl.cc 14 base::Value* settings,
21 NotifyDone(scoped_ptr<base::Value>());

Completed in 651 milliseconds

1 2 3 4 5 6 78 91011>>