/external/webkit/Source/JavaScriptCore/wtf/ |
HashSet.h | 29 template<typename Value, typename HashFunctions, typename Traits> class HashSet; 30 template<typename Value, typename HashFunctions, typename Traits> 31 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&); 32 template<typename Value, typename HashFunctions, typename Traits> 33 void fastDeleteAllValues(const HashSet<Value, HashFunctions, Traits>&); 75 // The return value is a pair of an interator to the new value's location, 149 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::find(const ValueType& value) const 151 return m_impl.find(value); 155 inline bool HashSet<T, U, V>::contains(const ValueType& value) cons [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
SerializedScriptValue.cpp | 105 static uint32_t encode(uint32_t value) 107 if (value & (1U << 31)) 108 value = ((~value) << 1) + 1; 110 value <<= 1; 111 return value; 114 static uint32_t decode(uint32_t value) 116 if (value & 1) 117 value = ~(value >> 1) 526 v8::Local<v8::Value> value = composite()->Get(m_propertyName); local 1110 v8::Local<v8::Value> value; local [all...] |
V8AbstractEventListener.cpp | 49 static void weakEventListenerCallback(v8::Persistent<v8::Value>, void* parameter) 103 v8::Handle<v8::Value> jsEvent = toV8(event); 131 void V8AbstractEventListener::invokeEventHandler(ScriptExecutionContext* context, Event* event, v8::Handle<v8::Value> jsEvent) 133 // If jsEvent is empty, attempt to set it as a hidden value would crash v8. 143 v8::Local<v8::Value> returnValue; 155 v8::Local<v8::Value> savedEvent = v8Context->Global()->GetHiddenValue(eventSymbol); 194 // Prevent default action if the return value is false; 206 v8::Handle<v8::Value> value = V8DOMWrapper::convertEventTargetToV8Object(target); local 207 if (value.IsEmpty() [all...] |
/external/clang/lib/CodeGen/ |
CGDecl.cpp | 208 CGM.ErrorUnsupported(D.getInit(), "constant l-value expression"); 252 llvm::Value *&DMEntry = LocalDeclMap[&D]; 271 // If this value has an initializer, emit it. 306 DestroyObject(llvm::Value *addr, QualType type, 312 llvm::Value *addr; 327 DestroyNRVOVariable(llvm::Value *addr, 329 llvm::Value *NRVOFlag) 333 llvm::Value *NRVOFlag; 334 llvm::Value *Loc; 345 llvm::Value *DidNRVO = CGF.Builder.CreateLoad(NRVOFlag, "nrvo.val") 376 llvm::Value *value = CGF.EmitLoadOfScalar(CGF.EmitDeclRefLValue(&DRE)); local 490 llvm::Value *value = EmitScalarExpr(init); local 536 llvm::Value *value = 0; local [all...] |
CodeGenFunction.cpp | 280 llvm::Value *Op = Fn; 290 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty); 322 // Indirect aggregate return; emit returned value directly into sret slot. 503 /// constant folds return true and set the folded value. 635 llvm::Value *CondV = EvaluateExprAsBool(Cond); 654 llvm::Value *dest, llvm::Value *src, 655 llvm::Value *sizeInChars) { 661 llvm::Value *baseSizeInChars 666 llvm::Value *begin = Builder.CreateBitCast(dest, i8p, "vla.begin") [all...] |
/external/chromium/base/json/ |
json_reader_unittest.cc | 17 scoped_ptr<Value> root; 20 ASSERT_TRUE(root->IsType(Value::TYPE_NULL)); 29 ASSERT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); 34 ASSERT_TRUE(root->IsType(Value::TYPE_NULL)); 37 ASSERT_TRUE(root->IsType(Value::TYPE_INTEGER)); 40 ASSERT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); 44 ASSERT_TRUE(root->IsType(Value::TYPE_STRING)); 45 std::string value; local 46 ASSERT_TRUE(root->GetAsString(&value)); 47 ASSERT_EQ("sample string", value); [all...] |
/external/chromium/chrome/browser/extensions/ |
convert_user_script.cc | 99 js_files->Append(Value::CreateStringValue("script.js")); 106 matches->Append(Value::CreateStringValue( 111 matches->Append(Value::CreateStringValue("http://*/*")); 112 matches->Append(Value::CreateStringValue("https://*/*")); 117 includes->Append(Value::CreateStringValue(script.globs().at(i))); 121 excludes->Append(Value::CreateStringValue(script.exclude_globs().at(i)));
|
/external/chromium/chrome/browser/ui/webui/ |
sync_internals_ui_unittest.cc | 145 args.Append(Value::CreateIntegerValue(5)); 146 args.Append(Value::CreateBooleanValue(true)); 159 args.Append(Value::CreateIntegerValue(5)); 160 args.Append(Value::CreateBooleanValue(true)); 169 params.arguments.Append(Value::CreateIntegerValue(10)); 187 params.arguments.Append(Value::CreateIntegerValue(5));
|
settings_browsertest.cc | 102 true_list_value.Append(Value::CreateStringValue("browser.show_home_button")); 103 true_list_value.Append(Value::CreateBooleanValue(true)); 105 Value::CreateStringValue("Options_Homepage_HomeButton"));
|
/external/clang/include/clang/Driver/ |
Driver.h | 209 void setCheckInputsExist(bool Value) { CheckInputsExist = Value; } 212 void setTitle(std::string Value) { DriverTitle = Value; } 225 void setInstalledDir(StringRef Value) { 226 InstalledDir = Value; 237 /// argument vector. A null return value does not necessarily
|
/external/llvm/lib/Analysis/ |
ScalarEvolutionAliasAnalysis.cpp | 57 Value *GetBaseValue(const SCEV *S); 88 /// base value. Return null is none was found. 89 Value * 118 const SCEV *AS = SE->getSCEV(const_cast<Value *>(LocA.Ptr)); 119 const SCEV *BS = SE->getSCEV(const_cast<Value *>(LocB.Ptr)); 160 Value *AO = GetBaseValue(AS); 161 Value *BO = GetBaseValue(BS);
|
/external/llvm/lib/Transforms/Scalar/ |
DeadStoreElimination.cpp | 71 SmallPtrSet<Value*, 16> &DeadStackObjects); 106 SmallPtrSet<Value*, 16> *ValueSet = 0) { 123 Value *Op = DeadInst->getOperand(op); 215 /// isRemovable - If the value of this instruction and the memory it writes to 242 static Value *getStoredPointerOperand(Instruction *I) { 256 static uint64_t getPointerSize(Value *V, AliasAnalysis &AA) { 273 /// isObjectPointerWithTrustworthySize - Return true if the specified Value* is 275 static bool isObjectPointerWithTrustworthySize(const Value *V) { 290 const Value *P1 = Earlier.Ptr->stripPointerCasts(); 291 const Value *P2 = Later.Ptr->stripPointerCasts() [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
randgen.h | 60 // Assumes Weight::Value() accesses the floating point 74 const A &arc = aiter.Value(); 75 sum += exp(-arc.weight.Value()); 77 sum += exp(-fst.Final(s).Value()); 84 const A &arc = aiter.Value(); 85 p += exp(-arc.weight.Value()); 145 const Arc &iarc = aiter.Value();
|
statesort.h | 54 StateId s1 = siter.Value(), s2; 62 arcs1->push_back(aiter.Value()); 71 arcs2->push_back(aiter.Value());
|
/external/v8/samples/ |
process.cc | 102 static Handle<Value> GetPath(Local<String> name, const AccessorInfo& info); 103 static Handle<Value> GetReferrer(Local<String> name, 105 static Handle<Value> GetHost(Local<String> name, const AccessorInfo& info); 106 static Handle<Value> GetUserAgent(Local<String> name, 110 static Handle<Value> MapGet(Local<String> name, const AccessorInfo& info); 111 static Handle<Value> MapSet(Local<String> name, 112 Local<Value> value, 134 static Handle<Value> LogCallback(const Arguments& args) { 137 Handle<Value> arg = args[0] 351 const string& value = (*iter).second; local 364 string value = ObjectToString(value_obj); local 539 string value = arg.substr(index+1); local [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 98 // Otherwise, just return the character as its ascii value. 112 virtual Value *Codegen() = 0; 120 virtual Value *Codegen(); 129 virtual Value *Codegen(); 139 virtual Value *Codegen(); 149 virtual Value *Codegen(); 159 virtual Value *Codegen(); 168 virtual Value *Codegen(); 179 virtual Value *Codegen(); 191 virtual Value *Codegen() [all...] |
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8WebGLRenderingContextCustom.cpp | 80 v8::Local<v8::Value> val = array->Get(v8::Integer::New(i)); 99 v8::Local<v8::Value> val = array->Get(v8::Integer::New(i)); 111 static v8::Handle<v8::Value> toV8Object(const WebGLGetInfo& info) 117 const Vector<bool>& value = info.getBoolArray(); local 118 v8::Local<v8::Array> array = v8::Array::New(value.size()); 119 for (size_t ii = 0; ii < value.size(); ++ii) 120 array->Set(v8::Integer::New(ii), v8::Boolean::New(value[ii])); 159 static v8::Handle<v8::Value> toV8Object(WebGLExtension* extension, v8::Handle<v8::Object> contextObject) 163 v8::Handle<v8::Value> extensionObject; 187 static v8::Handle<v8::Value> getObjectParameter(const v8::Arguments& args, ObjectType objectType [all...] |
V8CustomVoidCallback.cpp | 66 bool invokeCallback(v8::Persistent<v8::Object> callback, int argc, v8::Handle<v8::Value> argv[], bool& callbackReturnValue, ScriptExecutionContext* scriptExecutionContext) 75 v8::Local<v8::Value> handleEventFunction = callback->Get(v8::String::NewSymbol("handleEvent")); 86 v8::Handle<v8::Value> result = callbackFunction->Call(thisObject, argc, argv);
|
V8NavigatorCustom.cpp | 46 v8::Handle<v8::Value> V8Navigator::webkitGetUserMediaCallback(const v8::Arguments& args) 74 v8::Local<v8::Value> value, bool& succeeded) 78 if (!value->IsFunction()) { 85 return V8CustomApplicationInstalledCallback::create(value, frame); 88 v8::Handle<v8::Value> V8Navigator::isApplicationInstalledCallback(const v8::Arguments& args)
|
V8NotificationCenterCustom.cpp | 49 v8::Handle<v8::Value> V8NotificationCenter::createHTMLNotificationCallback(const v8::Arguments& args) 65 v8::Handle<v8::Value> V8NotificationCenter::createNotificationCallback(const v8::Arguments& args) 80 v8::Handle<v8::Value> V8NotificationCenter::requestPermissionCallback(const v8::Arguments& args)
|
V8ScriptProfileNodeCustom.cpp | 42 v8::Handle<v8::Value> V8ScriptProfileNode::childrenAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 55 v8::Handle<v8::Value> V8ScriptProfileNode::callUIDAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 62 v8::Handle<v8::Value> toV8(ScriptProfileNode* impl)
|
/external/chromium/chrome/browser/policy/ |
user_policy_cache.cc | 67 LOG(WARNING) << "Failed to write " << path_.value(); 90 << backing_file_path_.value(); 97 << backing_file_path_.value(); 171 virtual void Apply(ConfigurationPolicyType policy, Value* value) { 172 policy_map_->Set(policy, value); 203 Value* decoded_value = DecodeValue(named_value->value()); 214 Value* UserPolicyCache::DecodeIntegerValue( 215 google::protobuf::int64 value) const [all...] |
/external/chromium/chrome/common/ |
json_value_serializer_perftest.cc | 45 // Test deserialization of a json string into a Value object. We run the test 56 scoped_ptr<Value> root(reader.Deserialize(NULL, NULL)); 66 // Convert test cases to Value objects. 67 std::vector<Value*> test_cases; 70 Value* root = reader.Deserialize(NULL, NULL);
|
/external/clang/test/SemaTemplate/ |
instantiate-template-template-parm.cpp | 2 template<template<typename T> class MetaFun, typename Value> 4 typedef typename MetaFun<Value>::type type; 20 apply<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'int'}} 26 template<T Value> class X> // expected-error{{cannot have type 'float'}} \
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_DequantTransformResidualFromPairAndAdd.c | 37 OMX_S32 Value; 42 Value = (pSrcDst[i] * pVRow[armVCM4P10_PosToVCol4x4[i]]) << Shift; 43 pSrcDst[i] = (OMX_S16)Value; 79 * Return Value:
|