/external/chromium/chrome/browser/debugger/ |
debugger_remote_service.h | 57 // If |response| is not NULL, the operation result will be written 58 // as the "result" field in |response|, otherwise the result 78 // Operation result returned in the "result" field. 85 } Result; 90 // Writes the attachment result (one of Result enum values) into |response|. 106 // with the |tab_uid| and writes the result into |response| if it becomes 113 // a V8 debugger associated with the |tab_uid| and writes the result [all...] |
extension_ports_remote_service.h | 57 // Operation result returned in the "result" field in messages sent 67 } Result;
|
/external/chromium/chrome/browser/printing/ |
print_job.h | 56 PrintingContext::Result result);
|
print_job_worker.cc | 130 PrintingContext::Result result = local 133 GetSettingsDone(result); 136 void PrintJobWorker::GetSettingsDone(PrintingContext::Result result) { 151 result)); 166 void PrintJobWorker::GetSettingsWithUIDone(PrintingContext::Result result) { 168 this, &PrintJobWorker::GetSettingsDone, result)); 172 PrintingContext::Result result = printing_context_->UseDefaultSettings() local 188 PrintingContext::Result result = local [all...] |
/external/chromium/chrome/browser/remoting/ |
setup_flow_register_step.cc | 44 void SetupFlowRegisterStep::OnRequestDone(DirectoryAddRequest::Result result, 46 switch (result) { 63 << error_message << " (" << result << ")"; local
|
/external/clang/include/clang/Serialization/ |
ChainedIncludesSource.h | 52 llvm::SmallVectorImpl<Decl*> &Result);
|
/external/llvm/include/llvm/CodeGen/ |
JITCodeEmitter.h | 258 void *Result; 263 Result = 0; 266 Result = CurBufferPtr; 270 return Result;
|
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 641 SDNode *Result; 645 Result = CurDAG->getMachineNode(MOpc, dl, ResVT, MVT::Other, 648 ReplaceUses(N1.getValue(1), SDValue(Result, 1)); 650 Result = CurDAG->getMachineNode(Opc, dl, ResVT, SDValue(Dividend, 0), N1); 653 // Copy the division (odd subreg) result, if it is needed. 659 SDValue(Result, 0), 664 DEBUG(errs() << "=> "; Result->dump(CurDAG); errs() << "\n"); 667 // Copy the remainder (even subreg) result, if it is needed. 673 SDValue(Result, 0), 678 DEBUG(errs() << "=> "; Result->dump(CurDAG); errs() << "\n") [all...] |
/external/llvm/lib/Transforms/Scalar/ |
CodeGenPrepare.cpp | 843 Value *Result = 0; 857 Result = V; 877 if (Result) 878 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); 880 Result = V; 887 if (Result) 888 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); 890 Result = V [all...] |
CorrelatedValuePropagation.cpp | 152 LazyValueInfo::Tristate Result = LVI->getPredicateOnEdge(C->getPredicate(), 154 if (Result == LazyValueInfo::Unknown) return false; 160 if (Res != Result) return false; 166 if (Result == LazyValueInfo::True)
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
JITEventListenerTest.cpp | 79 Function *Result = Function::Create( 82 Value *Arg = Result->arg_begin(); 83 BasicBlock *BB = BasicBlock::Create(M->getContext(), "entry", Result); 85 return Result;
|
/external/skia/tests/ |
Test.cpp | 23 void Reporter::report(const char desc[], Result result) { 27 this->onReport(desc, result); 28 fResultCount[result] += 1; 29 if (kFailed == result) {
|
/external/v8/src/ |
regexp-macro-assembler.cc | 104 NativeRegExpMacroAssembler::Result NativeRegExpMacroAssembler::Match( 142 Result res = Execute(*regexp_code, 153 NativeRegExpMacroAssembler::Result NativeRegExpMacroAssembler::Execute( 167 int result = CALL_GENERATED_REGEXP_CODE(code->entry(), local 176 ASSERT(result <= SUCCESS); 177 ASSERT(result >= RETRY); 179 if (result == EXCEPTION && !isolate->has_pending_exception()) { 184 return static_cast<Result>(result);
|
/external/webkit/Source/WebCore/platform/haiku/ |
ContextMenuHaiku.cpp | 68 int Result()
|
/external/webkit/Source/WebCore/svg/ |
SVGFilterPrimitiveStandardAttributes.h | 80 DECLARE_ANIMATED_STRING(Result, result)
|
/external/webkit/Source/WebKit/chromium/src/ |
WebStorageAreaImpl.cpp | 69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) 78 result = ResultBlockedByQuota; 80 result = ResultOK;
|
/frameworks/compile/slang/ |
llvm-rs-link.cpp | 95 bool Result = true; 98 Result |= GetExportSymbolNames(EV, RS_EXPORT_VAR_NAME, Names); 101 Result |= GetExportSymbolNames(EF, RS_EXPORT_FUNC_NAME, Names); 102 return Result;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeDAG.cpp | 91 /// the insert there, and then read the result back. 98 /// performs the same shuffe in terms of order or result bytes, but on a type 165 /// performs the same shuffe in terms of order or result bytes, but on a type 269 if (SDNode *Result = FindCallEndFromCallStart(User, next_depth)) 270 return Result; 316 // If the first result of this node has been already legalized, then it cannot 404 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val); 405 return DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(), 516 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); 518 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result) [all...] |
/external/clang/lib/Sema/ |
SemaTemplateInstantiate.cpp | 56 MultiLevelTemplateArgumentList Result; 59 Result.addOuterTemplateArguments(Innermost); 75 Result.addOuterTemplateArguments(0, 0); 76 return Result; 90 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs()); 108 Result.addOuterTemplateArguments(TemplateArgs); 120 Result.addOuterTemplateArguments(Injected.first, Injected.second); 139 Result.addOuterTemplateArguments(TST->getArgs(), TST->getNumArgs()); 149 return Result; 703 TemplateArgument Result; 1093 ExprResult result; local [all...] |
/external/llvm/lib/CodeGen/ |
MachineFunction.cpp | 230 MachineInstr::mmo_iterator Result = allocateMemRefsArray(Num); 236 Result[Index] = *I; 244 Result[Index] = JustLoad; 249 return std::make_pair(Result, Result + Num); 262 MachineInstr::mmo_iterator Result = allocateMemRefsArray(Num); 268 Result[Index] = *I; 276 Result[Index] = JustStore; 281 return std::make_pair(Result, Result + Num) [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/ |
ContactLoaderTest.java | 77 private ContactLoader.Result assertLoadContact(Uri uri) { 83 ContactLoader.Result result = assertLoadContact(null); local 84 assertTrue(result.isError()); 88 ContactLoader.Result result = assertLoadContact(Uri.EMPTY); local 89 assertTrue(result.isError()); 93 ContactLoader.Result result = assertLoadContact(Uri.parse("content://wtf")); local 94 assertTrue(result.isError()) [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
CursorJoinerTest.java | 27 import android.database.CursorJoiner.Result; 116 for (CursorJoiner.Result joinResult : cursorJoiner) { 186 // For cursor1, value 1~7 result value as LEFT to cursor2 value '11' 188 assertEquals(Result.LEFT, cursorJoiner.next()); 195 // For cursor2, value 11~17 result a value as LEFT to cursor1 value '18' 197 assertEquals(Result.RIGHT, cursorJoiner.next()); 203 // For cursor1 and cursor2, value 18~20 result a value as BOTH 205 assertEquals(Result.BOTH, cursorJoiner.next());
|
/external/clang/lib/Rewrite/ |
DeltaTree.cpp | 219 // the value into one of the children, and return the result. 220 assert(InsertRes && "No result location specified"); 412 int Result = 0; 426 Result += Val.Delta; 432 if (!IN) return Result; 437 Result += IN->getChild(i)->getFullDelta(); 444 return Result+IN->getChild(NumValsGreater)->getFullDelta();
|
/external/llvm/lib/MC/ |
SubtargetFeature.cpp | 94 std::string Result; 98 Result = V[0]; 102 Result += ","; 104 Result += V[i]; 108 return Result;
|
/external/llvm/lib/Target/X86/ |
X86JITInfo.cpp | 467 StubLayout Result = {14, 4}; 468 return Result; 482 void *Result = (void*)JCE.getCurrentPCValue(); 496 return Result; 517 return Result;
|