HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 276 - 300 of 1612) sorted by null

<<11121314151617181920>>

  /device/samsung/toro/recovery/
recovery_updater.c 26 Value* UpdateCdmaModemFn(const char* name, State* state, int argc, Expr* argv[])
29 Value* img;
  /external/chromium/chrome/browser/extensions/
extension_module.cc 29 result_.reset(Value::CreateBooleanValue(
38 result_.reset(Value::CreateBooleanValue(
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store_unittest.cc 60 in_value->Append(Value::CreateStringValue("test1"));
61 in_value->Append(Value::CreateStringValue("test2,"));
64 const Value* value; local
66 store_->GetValue(GetParam().pref_name(), &value));
67 EXPECT_TRUE(in_value->Equals(value));
102 Value::CreateStringValue("http://chromium.org"));
104 const Value* value; local
106 store_->GetValue(GetParam().pref_name(), &value));
145 const Value* value; local
243 const Value* value = NULL; local
268 const Value* value = NULL; local
339 const Value* value = NULL; local
409 const Value* value = NULL; local
482 const Value* value = NULL; local
504 const Value* value = NULL; local
562 const Value* value = NULL; local
691 const Value* value = NULL; local
719 const Value* value = NULL; local
741 const Value* value = NULL; local
    [all...]
configuration_policy_store_interface.cc 25 Value* value) {
26 next_->Apply(policy, value);
33 Value* value) {
34 // Apply() takes ownership of |value|.
36 next_->Apply(policy, value);
38 delete value;
  /external/chromium/chrome/browser/prefs/
pref_observer_mock.h 22 // Matcher that checks whether the current value of the preference named
23 // |pref_name| in |prefs| matches |value|. If |value| is NULL, the matcher
24 // checks that the value is not set.
25 MATCHER_P3(PrefValueMatches, prefs, pref_name, value, "") {
31 const Value* actual_value = pref->GetValue();
33 return value == NULL;
34 if (!value)
36 return value->Equals(actual_value);
51 const Value* value)
    [all...]
  /external/chromium/chrome/browser/sync/
js_arg_list.h 25 explicit JsArgList(const std::vector<const Value*>& args);
37 explicit SharedListValue(const std::vector<const Value*>& value_list);
  /external/chromium/chrome/common/
json_schema_validator.h 18 class Value;
49 // for a value
87 // Classifies a Value as one of the JSON schema primitive types.
88 static std::string GetJSONSchemaType(Value* value);
139 // Validates a JSON value. Returns true if the instance is valid, false
142 bool Validate(Value* instance);
154 void Validate(Value* instance, DictionaryValue* schema,
159 void ValidateChoices(Value* instance, ListValue* choices,
163 void ValidateEnum(Value* instance, ListValue* choices
    [all...]
  /external/chromium/chrome/common/web_resource/
web_resource_unpacker.cc 27 scoped_ptr<Value> value; local
29 value.reset(base::JSONReader::Read(resource_data_, false));
30 if (!value.get()) {
35 if (!value->IsType(Value::TYPE_DICTIONARY)) {
39 parsed_json_.reset(static_cast<DictionaryValue*>(value.release()));
  /external/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 49 void setPrefix(std::string Value) { Prefix = Value; }
  /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/llvm/include/llvm/
Argument.h 17 #include "llvm/Value.h"
28 /// is a very simple Value. It is essentially a named (optional) type. When used
29 /// in the body of a function, it represents the value of the actual argument
32 class Argument : public Value, public ilist_node<Argument> {
84 static inline bool classof(const Value *V) {
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 56 void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; }
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeAsmBackend.cpp 114 uint64_t Value) const;
123 unsigned DataSize, uint64_t Value) const {
131 default: llvm_unreachable("Cannot fixup unknown value.");
132 case 1: llvm_unreachable("Cannot fixup 1 byte value.");
133 case 8: llvm_unreachable("Cannot fixup 8 byte value.");
136 *(data+7) = uint8_t(Value);
137 *(data+6) = uint8_t(Value >> 8);
138 *(data+3) = uint8_t(Value >> 16);
139 *(data+2) = uint8_t(Value >> 24);
143 *(data+3) = uint8_t(Value >> 0)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 33 typedef DenseMap<BasicBlock*, Value*> AvailableValsTy;
56 /// HasValueForBlock - Return true if the SSAUpdater already has a value for
62 /// AddAvailableValue - Indicate that a rewritten value is available in the
63 /// specified block with the specified value.
64 void SSAUpdater::AddAvailableValue(BasicBlock *BB, Value *V) {
71 /// IsEquivalentPHI - Check if PHI has the same incoming value as specified
74 DenseMap<BasicBlock*, Value*> &ValueMapping) {
89 /// GetValueAtEndOfBlock - Construct SSA form, materializing a value that is
91 Value *SSAUpdater::GetValueAtEndOfBlock(BasicBlock *BB) {
92 Value *Res = GetValueAtEndOfBlockInternal(BB)
    [all...]
  /external/llvm/lib/VMCore/
Value.cpp 1 //===-- Value.cpp - Implement the Value class -----------------------------===//
10 // This file implements the Value, ValueHandle, and User classes.
35 // Value Class
39 assert(Ty && "Value defined with a null type: Error!");
43 Value::Value(Type *ty, unsigned scid)
56 Value::~Value() {
57 // Notify all ValueHandles (if present) that this value is going away
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_scanline.cpp 30 Value * sPtr, Value * sRef)
33 Value * s = builder.CreateLoad(sPtr, "stenciOpS");
73 static Value * StencilOp(IRBuilder<> & builder, Value * face,
75 Value * sPtr, Value * sRef)
92 Value * s, Value * sRef, Value * sCmpPtr
    [all...]
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 26 import proguard.evaluation.value.Value;
45 * Exits the given method with the given return value.
49 Value returnValue);
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 25 import proguard.evaluation.value.Value;
47 private Value[] parameters;
48 private Value returnValue;
68 parameters = new Value[parameterCount];
229 public void generalizeParameter(int parameterIndex, Value parameter)
237 public Value getParameter(int parameterIndex)
245 public void generalizeReturnValue(Value returnValue)
253 public Value getReturnValue()
  /external/v8/src/
d8.h 85 return reinterpret_cast<Counter*>(answer->value);
87 void Set(const char* name, Counter* value) {
93 answer->value = value;
102 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value); }
117 Handle<Value> name,
120 static const char* ToCString(const v8::String::Utf8Value& value);
138 static Handle<Value> DebugCommandToJSONRequest(Handle<String> command);
145 static Handle<Value> Print(const Arguments& args);
146 static Handle<Value> Write(const Arguments& args)
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestCallback.cpp 69 v8::Handle<v8::Value> *argv = 0;
88 v8::Handle<v8::Value> class1ParamHandle = toV8(class1Param);
94 v8::Handle<v8::Value> argv[] = {
115 v8::Handle<v8::Value> class2ParamHandle = toV8(class2Param);
120 v8::Handle<v8::Value> strArgHandle = v8String(strArg);
126 v8::Handle<v8::Value> argv[] = {
148 v8::Handle<v8::Value> listParamHandle = toV8(listParam);
154 v8::Handle<v8::Value> argv[] = {
  /external/webkit/Source/WebCore/bindings/v8/
V8Collection.cpp 40 v8::Handle<v8::Value> toOptionsCollectionSetter(uint32_t index, v8::Handle<v8::Value> value, HTMLSelectElement* base)
42 if (value->IsNull() || value->IsUndefined()) {
44 return value;
49 // Check that the value is an HTMLOptionElement. If not, throw a TYPE_MISMATCH_ERR DOMException.
50 if (!V8HTMLOptionElement::HasInstance(value)) {
52 return value;
55 HTMLOptionElement* element = V8HTMLOptionElement::toNative(v8::Handle<v8::Object>::Cast(value));
    [all...]
V8EventListener.h 57 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
V8NPUtils.h 43 // Convert a V8 Value of any type (string, bool, object, etc) to a NPVariant.
44 void convertV8ObjectToNPVariant(v8::Local<v8::Value>, NPObject*, NPVariant*);
46 // Convert a NPVariant (string, bool, object, etc) back to a V8 Value. The owner object is the NPObject which relates to the
48 v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant*, NPObject*);
V8WindowErrorHandler.h 50 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
V8WorkerContextErrorHandler.h 52 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);

Completed in 1656 milliseconds

<<11121314151617181920>>