/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/ |
XmlEditor.java | 92 FirstElementParser.Result result = FirstElementParser.parse( local 96 AdtPlugin.log(IStatus.INFO, " data=%1$s, result=%2$s", data, result); 99 if (result != null && data != null) { 100 String name = result.getElement(); 103 result.getXmlnsPrefix()); 105 if (name != null && result.getXmlnsPrefix() != null) {
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
TreeWalker.java | 410 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, ""); 412 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 415 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, ""); 417 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
|
/external/chromium/chrome/browser/first_run/ |
try_chrome_dialog_view.cc | 35 TryChromeDialogView::Result TryChromeDialogView::Show( 58 TryChromeDialogView::Result TryChromeDialogView::ShowModal(
|
/external/clang/include/clang/AST/ |
ASTVector.h | 132 T Result = back(); 134 return Result;
|
/external/clang/lib/CodeGen/ |
ItaniumCXXABI.cpp | 630 llvm::Value *Result = Builder.CreateBinOp(Or, EqZero, AdjEq); 631 Result = Builder.CreateBinOp(And, PtrEq, Result, 633 return Result; 654 llvm::Value *Result = Builder.CreateICmpNE(Ptr, Zero, "memptr.tobool"); 664 Result = Builder.CreateOr(Result, IsVirtual); 667 return Result; [all...] |
CGExprComplex.cpp | 61 /// and returns the result. 106 assert(0 && "Stmt can't have complex result type!"); 254 // No comparisons produce a complex result. 608 ComplexPairTy Result = (this->*Func)(OpInfo); 610 // Truncate the result back to the LHS type. 611 Result = EmitComplexToComplexCast(Result, OpInfo.Ty, LHSTy); 612 Val = Result; 614 // Store the result value into the LHS lvalue. 615 EmitStoreThroughLValue(Result, LHS) [all...] |
CodeGenFunction.cpp | 322 // Tell the epilog emitter to autorelease the result. We do this 474 /// constant folds return true and set the boolean result in Result. 492 Expr::EvalResult Result; 493 if (!Cond->Evaluate(Result, getContext()) || !Result.Val.isInt() || 494 Result.HasSideEffects) 500 ResultInt = Result.Val.getInt(); [all...] |
/external/clang/lib/Serialization/ |
ChainedIncludesSource.cpp | 191 llvm::SmallVectorImpl<Decl*> &Result) { 192 return getFinalReader().FindExternalLexicalDecls(DC, isKindWeWant, Result);
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 220 ExprAST *Result = new NumberExprAST(NumVal); 222 return Result;
|
/external/llvm/lib/Analysis/ |
LoopDependenceAnalysis.cpp | 277 DependenceResult result = analyseSubscript(i->first, i->second, &subscript); local 278 if (result != Dependent) { 281 return result; 297 switch (p->Result = analysePair(p)) { 303 return p->Result != Independent;
|
InstructionSimplify.cpp | 349 // then the result of the binop is the select itself. 382 /// result in the same value. Returns the common value if so, otherwise returns 408 // result of the original comparison. 412 // If the false value simplified to false, then the result of the compare 418 // If the true value simplified to true, then the result of the compare 424 // false, then the result of the compare is equal to "!Cond". 438 /// it on the incoming phi values yields the same result for every value. If so 482 /// incoming phi values yields the same result every time. If so returns the 483 /// common result, otherwise returns null. 521 /// fold the result. If not, this returns null [all...] |
/packages/apps/Email/src/com/android/email/ |
RefreshManager.java | 61 private final Controller.Result mControllerResult; 355 private class ControllerResult extends Controller.Result {
|
/packages/apps/Email/src/com/android/email/activity/ |
EmailActivity.java | 67 private Controller.Result mControllerResult; 335 * A {@link Controller.Result} to detect connection status. 337 private class ControllerResult extends Controller.Result { 340 MessagingException result, long accountId, long messageId, int progress) { 341 handleError(result, accountId, progress); 346 MessagingException result, long accountId, long mailboxId, int progress, long tag) { 347 handleError(result, accountId, progress); 351 public void updateMailboxCallback(MessagingException result, long accountId, long mailboxId, 353 handleError(result, accountId, progress); 358 MessagingException result, long accountId, int progress) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
LayoutDeviceManager.java | 47 import javax.xml.transform.Result; 386 Result result = new StreamResult(file); local 390 xformer.transform(source, result);
|
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 230 std::string Result; 237 llvm::raw_string_ostream Out(Result); 287 Builder.append(Result); 296 std::string Result; 303 llvm::raw_string_ostream Out(Result); 340 Builder.append(Result);
|
/external/llvm/lib/VMCore/ |
Type.cpp | 309 FunctionType::FunctionType(Type *Result, ArrayRef<Type*> Params, 311 : Type(Result->getContext(), FunctionTyID) { 313 assert(isValidReturnType(Result) && "invalid return type for function"); 316 SubTys[0] = const_cast<Type*>(Result); 325 NumContainedTys = Params.size() + 1; // + 1 for result type 354 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { 355 return get(Result, ArrayRef<Type *>(), isVarArg);
|
/external/llvm/lib/Transforms/InstCombine/ |
InstructionCombining.cpp | 97 // If this is a legal integer from type, and the result would be an illegal 102 // Otherwise, if both are illegal, do not increase the size of the result. We [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
DAGCombiner.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 2274 SVal result = local [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 242 bool ParseTopLevelDecl(DeclGroupPtrTy &Result); [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | 63 static SDValue Insert128BitVector(SDValue Result, 115 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec, 118 return Result; 129 static SDValue Insert128BitVector(SDValue Result, 142 EVT ResultVT = Result.getValueType(); 154 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec, 156 return Result; 178 // This is half the length of the result 381 // the two-result form to trivial CSE, which is able to combine x/y and x% [all...] |
/external/bluetooth/glib/glib/ |
gutf8.c | 90 #define UTF8_GET(Result, Chars, Count, Mask, Len) \ 91 (Result) = (Chars)[0] & (Mask); \ 96 (Result) = -1; \ 99 (Result) <<= 6; \ 100 (Result) |= ((Chars)[(Count)] & 0x3f); \ 271 gunichar result; local 277 UTF8_GET (result, p, i, mask, len); 279 return result; 802 gunichar result; local 807 result = g_utf8_get_char_extended (p, max_len) 839 gunichar *result; local 955 gunichar *result = NULL; local 1037 gchar *result = NULL; local 1120 gchar *result = NULL; local 1261 gchar *result = NULL; local 1401 gunichar2 *result = NULL; local 1516 gunichar2 *result = NULL; local 1820 gchar *r, *result; local [all...] |
/external/llvm/lib/ExecutionEngine/JIT/ |
JITEmitter.cpp | 656 void *Result = JR->TheJIT->getPointerToGlobalIfAvailable(F); 658 if (!Result) { 672 Result = JR->TheJIT->getPointerToFunction(F); 692 JR->revGOTMap[Result] = JR->revGOTMap[Stub]; 694 return Result; [all...] |
/external/llvm/tools/bugpoint/ |
Miscompilation.cpp | 105 // kept passes, we can update our bitcode file to include the result of the 129 // passes on the result of the prefix passes. 158 // Run the result... 795 // Call the old main function and return its result [all...] |