/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCompares.cpp | 42 static bool HasAddOverflow(ConstantInt *Result, 46 return Result->getValue().ult(In1->getValue()); 49 return Result->getValue().sgt(In1->getValue()); 50 return Result->getValue().slt(In1->getValue()); 53 /// AddWithOverflow - Compute Result = In1+In2, returning true if the result 55 static bool AddWithOverflow(Constant *&Result, Constant *In1, 57 Result = ConstantExpr::getAdd(In1, In2); 62 if (HasAddOverflow(ExtractElement(Result, Idx), 71 return HasAddOverflow(cast<ConstantInt>(Result), [all...] |
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 339 void *Result; 340 memcpy(&Result, static_cast<char *>(Data) + Offset, sizeof(void*)); 341 return Result;
|
/external/clang/lib/Sema/ |
SemaCXXScopeSpec.cpp | 260 /// result for name lookup of a nested-name-specifier. 291 /// nested-name-specifier within the given scope, and return the result of that 311 NamedDecl *Result = Found.getFoundDecl(); 312 if (isAcceptableNestedNameSpecifier(Result)) 313 return Result; 372 /// the result of name lookup within the scope of the nested-name-specifier 378 /// scope if it *knows* that the result is correct. It should not return in a 444 // reconstruct the result from when name lookup was performed at template 519 // scope, reconstruct the result from the template instantiation itself. [all...] |
/external/clang/tools/libclang/ |
CIndexCodeCompletion.cpp | 247 /// \brief Tracks the number of code-completion result objects that are 526 CXCodeCompleteResults *result; member in struct:CodeCompleteAtInfo 537 CCAI->result = 0; 666 CCAI->result = Results; 687 return CCAI.result; 769 llvm::StringRef Result; 773 AppendToString(Result, C->Text, Buffer); 776 return Result; 796 int result = XText.compare_lower(YText); local 797 if (result < 0 [all...] |
/external/llvm/lib/Analysis/ |
AliasSetTracker.cpp | 104 AliasAnalysis::AliasResult Result = 108 if (Result != AliasAnalysis::MustAlias) 112 assert(Result != AliasAnalysis::NoAlias && "Cannot be part of must set!");
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITDwarfEmitter.cpp | 54 unsigned char* Result = 0; 59 Result = EmitEHFrame(Personalities[MMI->getPersonalityIndex()], EHFramePtr, 62 return Result;
|
/external/llvm/tools/llvm-diff/ |
DifferenceEngine.cpp | 180 bool Result = diff(L, R, true, true); 181 assert(!Result && "structural differences second time around?"); 182 (void) Result;
|
/external/llvm/utils/TableGen/ |
CodeGenDAGPatterns.h | 266 std::string Result = getImmCode(); 267 assert(!Result.empty() && "Isn't an immediate pattern!"); 268 return Result; 298 /// The type of each node result. Before and during type inference, each 299 /// result may be a set of possible types. After (successful) type inference, 686 /// value is the pattern to match, the second pattern is the result to
|
IntrinsicEmitter.cpp | 125 std::string Result = "return " + TargetPrefix + "Intrinsic::" + 129 MatchTable.push_back(std::make_pair(Ints[IntNo].Name.substr(6),Result)); 137 << Result << '\n'; 697 OS << "// in as TargetPrefix. The result is assigned to 'IntrinsicID'.\n";
|
/external/v8/test/cctest/ |
test-regexp.cc | 70 RegExpCompileData result; local 71 return v8::internal::RegExpParser::ParseRegExp(&reader, false, &result); 80 RegExpCompileData result; local 81 CHECK(v8::internal::RegExpParser::ParseRegExp(&reader, false, &result)); 82 CHECK(result.tree != NULL); 83 CHECK(result.error.is_null()); 84 SmartPointer<const char> output = result.tree->ToString(); 94 RegExpCompileData result; local 95 CHECK(v8::internal::RegExpParser::ParseRegExp(&reader, false, &result)); 96 CHECK(result.tree != NULL) 112 RegExpCompileData result; local 383 RegExpCompileData result; local 736 NativeRegExpMacroAssembler::Result result = local 780 NativeRegExpMacroAssembler::Result result = local 839 NativeRegExpMacroAssembler::Result result = local 895 NativeRegExpMacroAssembler::Result result = local 938 NativeRegExpMacroAssembler::Result result = local 987 NativeRegExpMacroAssembler::Result result = local 1040 NativeRegExpMacroAssembler::Result result = local 1101 NativeRegExpMacroAssembler::Result result = local 1201 NativeRegExpMacroAssembler::Result result = local 1243 NativeRegExpMacroAssembler::Result result = local 1290 NativeRegExpMacroAssembler::Result result = local [all...] |
/external/llvm/lib/Target/Alpha/ |
AlphaISelLowering.cpp | 332 // Handle result values, copying them out of physregs into vregs that we 338 /// LowerCallResult - Lower the result values of a call into the 355 // Copy all of the result registers out of their specified physreg. 709 SDValue Result; 711 Result = DAG.getExtLoad(ISD::SEXTLOAD, dl, MVT::i64, Chain, DataPtr, 714 Result = DAG.getLoad(Op.getValueType(), dl, Chain, DataPtr, 717 return Result; 729 SDValue Result = DAG.getStore(Val.getValue(1), dl, Val, DestP, 734 Val = DAG.getExtLoad(ISD::SEXTLOAD, dl, MVT::i64, Result, [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | 240 /// signed operation and 2 if the result is an unsigned comparison. Return zero 258 /// getSetCCOrOperation - Return the result of a logical OR between different 282 /// getSetCCAndOperation - Return the result of a logical AND between different 293 ISD::CondCode Result = ISD::CondCode(Op1 & Op2); 297 switch (Result) { 299 case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT 301 case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE 302 case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE 303 case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE 307 return Result; [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
testview.js | 11 * result. 48 thead.innerHTML = '<tr><th>Result</th><th>Experiment</th>' + 70 // We will fill in result cells with actual values (to replace the 103 experiment, result) { 113 if (result == 0) { 118 addTextNode(r.resultCell, result);
|
/external/clang/lib/Driver/ |
Driver.cpp | 337 // Otherwise, remove result files as well. 343 // This is ad-hoc, but we don't want to be excessively noisy. If the result 351 // FIXME: See FIXME above regarding result code interpretation. [all...] |
/external/clang/lib/Lex/ |
LiteralSupport.cpp | 268 // First, we determine how many bytes the result will require. 634 /// of the result and return true. Otherwise, return false. 689 NumericLiteralParser::GetFloatValue(llvm::APFloat &Result) { 694 return Result.convertFromString(StringRef(ThisTokBegin, n), 860 // literal, the result is a wide-string literal [C99 6.4.5p4]. 909 // Size the temporary buffer to hold the result string data. [all...] |
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 227 ExprAST *Result = new NumberExprAST(NumVal); 229 return Result;
|
/external/llvm/lib/Transforms/Scalar/ |
LoopStrengthReduce.cpp | 426 /// the result will be used in a context where the most significant bits are 528 int64_t Result = ExtractImmediate(NewOps.front(), SE); 529 if (Result != 0) 531 return Result; 534 int64_t Result = ExtractImmediate(NewOps.front(), SE); 535 if (Result != 0) 539 return Result; 555 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE); 556 if (Result) 558 return Result; [all...] |
/external/llvm/lib/Transforms/Utils/ |
AddrModeMatcher.cpp | 566 ExtAddrMode Result; 568 MemoryInst, Result);
|
/external/llvm/utils/ |
NewNightlyTest.pl | 304 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH; 306 return @Result; 358 $result = chdir($dir); 359 if (!$result) { 453 my $result; 455 $result .= $_; 459 return $result;
|
/external/v8/test/mjsunit/ |
debug-liveedit-3.js | 60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log); variable 61 print("Result: " + JSON.stringify(result) + "\n");
|
debug-liveedit-breakpoints.js | 77 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log); variable 78 print("Result: " + JSON.stringify(result) + "\n");
|
debug-liveedit-newsource.js | 60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log); variable 61 print("Result: " + JSON.stringify(result) + "\n");
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailLayoutController.java | 80 private ContactLoader.Result mContactData; 233 public void setContactData(ContactLoader.Result data) {
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
ContactEditorFragment.java | 442 public void setData(ContactLoader.Result data) { 480 private void bindEditorsForExistingContact(ContactLoader.Result data) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
RenderService.java | 30 import com.android.ide.common.rendering.api.Result; 135 * the result as a {@link RenderSession}. 262 * Renders the model and returns the result as a {@link RenderSession}. 401 Result result = mLayoutLib.renderDrawable(params); local 402 if (result != null && result.isSuccess()) { 403 Object data = result.getData();
|