/external/llvm/lib/Analysis/ |
AliasAnalysisEvaluator.cpp | 89 static void PrintResults(const char *Msg, bool P, const Value *V1, 90 const Value *V2, const Module *M) { 108 PrintModRefResults(const char *Msg, bool P, Instruction *I, Value *Ptr, 126 static inline bool isInterestingPointer(Value *V) { 134 SetVector<Value *> Pointers; 145 if (CallSite CS = cast<Value>(&Inst)) { 146 Value *Callee = CS.getCalledValue(); 171 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end(); 177 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { 207 for (SetVector<Value *>::iterator V = Pointers.begin(), Ve = Pointers.end() [all...] |
/external/llvm/lib/MC/MCParser/ |
AsmLexer.cpp | 186 long long Value; 187 if (Result.getAsInteger(10, Value)) { 193 Value = (long long)UValue; 200 return AsmToken(AsmToken::Integer, Result, Value); 221 long long Value; 222 if (Result.substr(2).getAsInteger(2, Value)) 229 return AsmToken(AsmToken::Integer, Result, Value); 259 long long Value; 260 if (Result.getAsInteger(8, Value)) 267 return AsmToken(AsmToken::Integer, Result, Value); [all...] |
/external/llvm/lib/Target/PowerPC/InstPrinter/ |
PPCInstPrinter.cpp | 119 char Value = MI->getOperand(OpNo).getImm(); 120 Value = (Value << (32-5)) >> (32-5); 121 O << (int)Value; 126 unsigned char Value = MI->getOperand(OpNo).getImm(); 127 assert(Value <= 31 && "Invalid u5imm argument!"); 128 O << (unsigned int)Value; 133 unsigned char Value = MI->getOperand(OpNo).getImm(); 134 assert(Value <= 63 && "Invalid u6imm argument!"); 135 O << (unsigned int)Value; [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombinePHI.cpp | 28 Value *LHSVal = FirstInst->getOperand(0); 29 Value *RHSVal = FirstInst->getOperand(1); 79 Value *InLHS = FirstInst->getOperand(0); 80 Value *InRHS = FirstInst->getOperand(1); 103 Value *NewInLHS = InInst->getOperand(0); 107 Value *NewInRHS = InInst->getOperand(1); 133 SmallVector<Value*, 16> FixedOperands(FirstInst->op_begin(), 206 Value *FirstOp = FirstInst->getOperand(i); 230 Value *Base = FixedOperands[0]; 241 /// obvious the value of the load is not changed from the point of the load t 608 struct isPodLike<LoweredPHIRecord> { static const bool value = true; }; member in struct:llvm::isPodLike [all...] |
/external/llvm/lib/Transforms/Scalar/ |
CodeGenPrepare.cpp | 61 STATISTIC(NumDbgValueMoved, "Number of debug value instructions moved"); 83 DenseMap<Value*, Value*> SunkAddrs; 108 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy); 137 // llvm.dbg.value is far away from the value then iSel may not be able 138 // handle it properly. iSel will drop llvm.dbg.value if it can not 139 // find a node corresponding to the value. 224 for (Value::const_use_iterator UI = PN->use_begin(), E = PN->use_end(); 230 // incoming value. If incoming value is not from BB then this i [all...] |
ObjCARC.cpp | 170 /// IsPotentialUse - Test whether the given value is possible a 172 static bool IsPotentialUse(const Value *Op) { 274 static InstructionClass GetInstructionClass(const Value *V) { 365 static InstructionClass GetBasicInstructionClass(const Value *V) { 440 /// argument verbatim, so if it's such a call and the return value has users, 441 /// replace them with the argument value. 443 Value *OldArg = cast<CallInst>(CI)->getArgOperand(0); 448 // Replace the return value with the argument. 463 static const Value *GetUnderlyingObjCPtr(const Value *V) [all...] |
LoopIdiomRecognize.cpp | 26 // i64 and larger types when i64 is legal and the value has few bits set. It 85 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize, 87 Value *SplatValue, Instruction *TheStore, 149 Value *Op = DeadInst->getOperand(op); 165 /// deleteIfDeadInstruction - If the specified value is a dead instruction, 167 static void deleteIfDeadInstruction(Value *V, ScalarEvolution &SE) { 272 Value *StoredVal = SI->getValueOperand(); 273 Value *StorePtr = SI->getPointerOperand(); 310 // If the stored value is a strided load in the same loop with the same stride 336 Value *Pointer = MSI->getDest() [all...] |
ScalarReplAggregates.cpp | 81 SmallVector<Value*, 32> DeadInsts; 274 bool CanConvertToScalar(Value *V, uint64_t Offset); 277 void ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, uint64_t Offset); 279 Value *ConvertScalar_ExtractValue(Value *NV, Type *ToType, 281 Value *ConvertScalar_InsertValue(Value *StoredVal, Value *ExistingVal, 412 /// If we see at least one access to the value that is as a vector type, set the 414 bool ConvertToScalarInfo::CanConvertToScalar(Value *V, uint64_t Offset) [all...] |
LoopUnswitch.cpp | 60 // The specific value of 50 here was chosen based only on intuition and a 74 SmallPtrSet<Value *,8> UnswitchedVals; 141 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val); 142 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val, 144 void UnswitchNontrivialCondition(Value *LIC, Constant *OnVal, Loop *L); 146 void RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC, 149 void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val, 158 bool IsTrivialUnswitchCondition(Value *Cond, Constant **Val = 0, 179 static Value *FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_browser_event_router.cc | 102 args.Append(Value::CreateIntegerValue(window_id)); 284 args.Append(Value::CreateIntegerValue(tab_id)); 287 object_args->Set(tab_keys::kNewWindowIdKey, Value::CreateIntegerValue( 289 object_args->Set(tab_keys::kNewPositionKey, Value::CreateIntegerValue( 307 args.Append(Value::CreateIntegerValue( 311 object_args->Set(tab_keys::kOldWindowIdKey, Value::CreateIntegerValue( 313 object_args->Set(tab_keys::kOldPositionKey, Value::CreateIntegerValue( 329 args.Append(Value::CreateIntegerValue(tab_id)); 356 args.Append(Value::CreateIntegerValue( 360 object_args->Set(tab_keys::kWindowIdKey, Value::CreateIntegerValue [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
TemplateInterpreter.java | 60 import com.google.clearsilver.jsilver.values.Value; 110 Value value = expressionEvaluator.evaluate(node.getExpression()); local 111 writeVariable(value); 122 Value value = expressionEvaluator.evaluate(node.getExpression()); local 123 context.writeUnescaped(value.asString()); 146 Value value = expressionEvaluator.evaluate(expression); local 150 templateLoader.createTemp(stackTraceDescription, value.asString(), contex 210 Value value = expressionEvaluator.evaluate(node.getExpression()); local 244 Value value = expressionEvaluator.evaluate(node.getExpression()); local 259 Value value = expressionEvaluator.evaluate(node.getExpression()); local 276 Value value = expressionEvaluator.evaluate(node.getExpression()); local 295 Value value = expressionEvaluator.evaluate(node.getExpression()); local 393 Value value = expressionEvaluator.evaluate(node.getExpression()); local [all...] |
/external/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | 118 /// one other value is ever stored to it. If this global isStoredOnce, we 119 /// track the value stored to it in StoredOnceValue below. This is only 128 /// StoredOnceValue - If only one value (besides the initializer constant) is 129 /// ever stored to this global, keep track of what value it is. 130 Value *StoredOnceValue; 161 for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E; 175 static bool AnalyzeGlobal(const Value *V, GlobalStatus &GS, 177 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; 208 // value, not an aggregate), keep more specific information about 213 Value *StoredVal = SI->getOperand(0) [all...] |
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
Compiler.cpp | 71 #include "llvm/Value.h" 381 llvm::Value *ExportVarNameMDS = ExportVar->getOperand(0); 382 if (ExportVarNameMDS->getValueID() == llvm::Value::MDStringVal) { 409 llvm::Value *ExportFuncNameMDS = ExportFunc->getOperand(0); 410 if (ExportFuncNameMDS->getValueID() == llvm::Value::MDStringVal) { 455 llvm::Value *PragmaNameMDS = Pragma->getOperand(0); 456 llvm::Value *PragmaValueMDS = Pragma->getOperand(1); 458 if ((PragmaNameMDS->getValueID() == llvm::Value::MDStringVal) && 459 (PragmaValueMDS->getValueID() == llvm::Value::MDStringVal)) { 487 llvm::Value *SlotMDS = ObjectSlot->getOperand(0) [all...] |
/external/chromium/chrome/browser/policy/ |
user_policy_cache_unittest.cc | 32 Value* DecodeIntegerValue(google::protobuf::int64 value); 151 Value::CreateStringValue("chromium.org")); 152 mandatory.Set(kPolicyJavascriptEnabled, Value::CreateBooleanValue(true)); 154 recommended.Set(kPolicyPolicyRefreshRate, Value::CreateIntegerValue(5)); 162 scoped_ptr<Value> value( 164 ASSERT_TRUE(value.get()); 166 EXPECT_TRUE(value->Equals(&expected_42)); 167 value.reset [all...] |
/hardware/ril/mock-ril/src/cpp/ |
js_support.cpp | 50 v8::Handle<v8::Value> RadioStateGetter(v8::Local<v8::String> property, 56 v8::Local<v8::Value> value, const v8::AccessorInfo& info) { 57 gRadioState = RIL_RadioState(value->Int32Value()); 61 v8::Handle<v8::Value> MsSleep(const v8::Arguments& args) { 65 v8::Handle<v8::Value> v8MsValue(args[0]->ToObject()); 75 v8::Handle<v8::Value> Print(const v8::Arguments& args) { 152 v8::Handle<v8::Value> ReadFileToString(const v8::Arguments& args) { 155 v8::Handle<v8::Value> retValue; 177 v8::Handle<v8::Value> ReadFileToBuffer(const v8::Arguments& args) [all...] |
/external/tinyxml/ |
xmltest.cpp | 131 printf( "Error in %s: %s\n", doc.Value(), doc.ErrorDesc() ); 258 XmlTest ( "Root element value is 'ToDo'.", "ToDo", node->Value()); 264 XmlTest ( "Value is 'Item'.", "Item", node->Value() ); 268 XmlTest ( "Value is 'Go to the'.", "Go to the", node->Value() ); 315 // Walk all the elements in a node by value. 341 XmlTest ( "Element parsed, value is 'Element0'.", "Element0", element0.Value() ); [all...] |
/external/chromium/net/proxy/ |
proxy_resolver_v8.cc | 184 bool V8ObjectToUTF16String(v8::Handle<v8::Value> object, 286 // Sort lists according to ascending numeric value. 357 v8::Local<v8::Value> function; 364 v8::Handle<v8::Value> argv[] = { 370 v8::Local<v8::Value> ret = v8::Function::Cast(*function)->Call( 470 v8::Local<v8::Value> function; 492 bool GetFindProxyForURL(v8::Local<v8::Value>* function) { 534 static v8::Handle<v8::Value> AlertCallback(const v8::Arguments& args) { 536 static_cast<Context*>(v8::External::Cast(*args.Data())->Value()); 553 static v8::Handle<v8::Value> MyIpAddressCallback(const v8::Arguments& args) [all...] |
/external/llvm/lib/MC/ |
MCExpr.cpp | 155 const MCConstantExpr *MCConstantExpr::Create(int64_t Value, MCContext &Ctx) { 156 return new (Ctx) MCConstantExpr(Value); 268 MCValue Value; 280 EvaluateAsRelocatableImpl(Value, Asm, Layout, Addrs, /*InSet*/ Addrs); 282 // Record the current value. 283 Res = Value.getConstant(); 285 return IsRelocatable && Value.isAbsolute(); 466 MCValue Value; 468 if (!AUE->getSubExpr()->EvaluateAsRelocatableImpl(Value, Asm, Layout, 474 if (!Value.isAbsolute() [all...] |
/external/chromium/chrome/browser/prefs/ |
command_line_pref_store_unittest.cc | 29 const Value* value = NULL; local 30 ASSERT_EQ(PrefStore::READ_OK, GetValue(prefs::kProxy, &value)); 31 ASSERT_EQ(Value::TYPE_DICTIONARY, value->GetType()); 32 ProxyConfigDictionary dict(static_cast<const DictionaryValue*>(value)); 50 const Value* actual = NULL; 72 cl.AppendSwitchASCII(unknown_bool, "a value"); 75 const Value* actual = NULL; 86 cl.AppendSwitchASCII(unknown_bool, "a value"); 96 const Value* value = NULL; local [all...] |
/external/chromium/chrome/browser/sync/ |
js_sync_manager_observer_unittest.cc | 68 expected_args.Append(Value::CreateStringValue(model_type_str)); 120 true_args.Append(Value::CreateBooleanValue(true)); 121 false_args.Append(Value::CreateBooleanValue(false)); 136 redacted_args.Append(Value::CreateStringValue("<redacted>")); 159 encrypted_type_values->Append(Value::CreateStringValue( 180 type_values->Append(Value::CreateStringValue( 255 expected_args.Append(Value::CreateStringValue(model_type_str));
|
/external/clang/include/clang/Sema/ |
Template.h | 31 /// template<T Value> 132 TPOC Value; 134 TemplatePartialOrderingContext(TPOC Value) : Value(Value) {} 135 operator TPOC() const { return Value; } 138 /// \brief Captures a template argument whose value has been deduced 141 /// \brief For a non-type template argument, whether the value was 155 DeducedTemplateArgument(const llvm::APSInt &Value, 158 : TemplateArgument(Value, ValueType), [all...] |
/external/llvm/include/llvm/CodeGen/ |
FastISel.h | 46 DenseMap<const Value *, unsigned> LocalValueMap; 103 /// be assigned the value for the given LLVM value. 104 unsigned getRegForValue(const Value *V); 106 /// lookUpRegForValue - Look up the value to see if its value is already 109 unsigned lookUpRegForValue(const Value *V); 113 /// index value. 114 std::pair<unsigned, bool> getRegForGEPIndex(const Value *V); 135 /// into the local value area and return the old insert position [all...] |
/external/llvm/include/llvm/ |
Operator.h | 51 static unsigned getOpcode(const Value *V) { 62 static inline bool classof(const Value *V) { 118 static inline bool classof(const Value *V) { 159 static inline bool classof(const Value *V) { 182 static inline bool classof(const Value *V) { 252 Value *getPointerOperand() { 255 const Value *getPointerOperand() const { 278 /// value, just potentially different types.
|
/external/webkit/Source/WebCore/bindings/v8/ |
WorkerContextExecutionProxy.cpp | 62 static void v8MessageHandler(v8::Handle<v8::Message> message, v8::Handle<v8::Value> data) 204 v8::Local<v8::Value> result = runScript(compiledScript); 232 v8::Local<v8::Value> WorkerContextExecutionProxy::runScript(v8::Handle<v8::Script> script) 235 return v8::Local<v8::Value>(); 247 return v8::Local<v8::Value>(); 250 v8::Local<v8::Value> result; 259 return v8::Local<v8::Value>();
|
/bootable/recovery/updater/ |
install.c | 50 Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) { 122 Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) { 150 Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) { 187 Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) { 265 Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) { 296 Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) { 316 Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) { 334 Value* PackageExtractDirFn(const char* name, State* state, 362 Value* PackageExtractFileFn(const char* name, State* state, 401 Value* v = malloc(sizeof(Value)) 670 char value[PROPERTY_VALUE_MAX]; local [all...] |