HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 201 - 225 of 552) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 186 std::vector<MVT::SimpleValueType> Result;
192 Result.insert(Result.end(), InVTs.begin(), InVTs.end());
197 array_pod_sort(Result.begin(), Result.end());
198 Result.erase(std::unique(Result.begin(), Result.end()), Result.end());
199 return Result;
    [all...]
SetTheory.cpp 181 if (const RecVec *Result = ST.expand(Rec))
182 Elts.insert(Result->begin(), Result->end());
228 if (const RecVec *Result = expand(Def->getDef()))
229 return Elts.insert(Result->begin(), Result->end());
  /external/llvm/lib/Target/
TargetData.cpp 129 unsigned Result = 0;
130 R.getAsInteger(10, Result);
131 return Result;
370 std::string Result;
371 raw_string_ostream OS(Result);
528 uint64_t Result = 0;
544 Result += Layout->getElementOffset(FieldNo);
554 Result += (uint64_t)arrayIdx * getTypeAllocSize(Ty);
558 return Result;
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 92 Storage *Result = FreeList[--NumFreeListEntries];
93 Result->NumDiagArgs = 0;
94 Result->NumDiagRanges = 0;
95 Result->NumFixItHints = 0;
96 return Result;
  /external/llvm/include/llvm/ADT/
StringRef.h 128 /// compare - Compare two strings; the result is -1, 0, or 1 if this string
309 bool getAsInteger(unsigned Radix, long long &Result) const;
310 bool getAsInteger(unsigned Radix, unsigned long long &Result) const;
311 bool getAsInteger(unsigned Radix, int &Result) const;
312 bool getAsInteger(unsigned Radix, unsigned &Result) const;
318 /// is 0. The current value in Result is discarded, and the
327 bool getAsInteger(unsigned Radix, APInt &Result) const;
366 /// If \arg Separator is in the string, then the result is a pair (LHS, RHS)
368 /// maximal. If \arg Separator is not in the string, then the result is a
383 /// If \arg Separator is in the string, then the result is a pair (LHS, RHS
    [all...]
SparseBitVector.h 690 // Result of RHS1 & ~RHS2 is stored into this bitmap.
782 SparseBitVector<ElementSize> Result(*this);
783 Result &= RHS;
784 return (Result == RHS);
863 SparseBitVector<ElementSize> Result(LHS);
864 Result |= RHS;
865 return Result;
872 SparseBitVector<ElementSize> Result(LHS);
873 Result &= RHS;
874 return Result;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
workstealing.h 85 * @param r Functor to "add" a single result to the already
88 * @param output Pointer to position where final result is written to
91 * @return User-supplied functor (that may contain a part of the result).
97 typename Result>
102 Result base, Result& output,
164 Result result = Result(); local
187 // Init result with first value (to have a base value for reduction)
    [all...]
  /external/llvm/lib/Analysis/
DominanceFrontier.cpp 42 DomSetType *Result = NULL;
93 Result = &S;
108 return *Result;
Analysis.cpp 81 LLVMBool Result = verifyModule(*unwrap(M),
88 return Result;
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 267 bool Result;
274 Info->Result = Info->CRC->RunSafely(Info->UserFn, Info->UserData);
280 return Info.Result;
  /external/skia/src/animator/
SkOperandIterpolator.cpp 67 SkInterpolatorBase::Result SkOperandInterpolator::timeToValues(SkMSec time, SkOperand values[]) const
72 Result result = timeToT(time, &T, &index, &exact); local
98 return result;
121 Result result; local
126 result = inter.timeToValues(0, v);
127 SkASSERT(result == kFreezeStart_Result);
130 result = inter.timeToValues(99, v);
131 SkASSERT(result == kFreezeStart_Result)
    [all...]
  /external/v8/src/
regexp-macro-assembler.h 182 // Result of calling generated native RegExp code.
191 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 };
197 static Result Match(Handle<Code> regexp,
230 static Result Execute(Code* code,
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 20 import com.android.contacts.ContactLoader.Result;
68 * {@link ContactLoader.Result} data object to appropriate {@link View}s.
104 public static CharSequence getDisplayName(Context context, Result contactData) {
124 public static String getPhoneticName(Context context, Result contactData) {
136 public static String getAttribution(Context context, Result contactData) {
152 public static String getCompany(Context context, Result contactData) {
196 public static void setPhoto(Context context, Result contactData, ImageView photoView) {
217 public static void setStarred(Result contactData, CheckBox starredView) {
230 public static void setSocialSnippet(Context context, Result contactData, TextView statusView,
370 public static void setDisplayName(Context context, Result contactData, TextView textView)
    [all...]
ContactLoaderFragment.java 82 public void onDetailsLoaded(ContactLoader.Result result);
105 private ContactLoader.Result mContactData;
177 private final LoaderManager.LoaderCallbacks<ContactLoader.Result> mDetailLoaderListener =
178 new LoaderCallbacks<ContactLoader.Result>() {
180 public Loader<ContactLoader.Result> onCreateLoader(int id, Bundle args) {
187 public void onLoadFinished(Loader<ContactLoader.Result> loader, ContactLoader.Result data) {
215 public void onLoaderReset(Loader<ContactLoader.Result> loader) {}
  /packages/apps/Email/src/com/android/email/activity/
MailboxFinder.java 39 * This is a "one-shot" class. You create an instance, call {@link #startLookup}, get a result
46 // Actual Controller.Result that will wrapped by ControllerResultUiThreadWrapper.
49 private Controller.Result mControllerResults; // Not final, we null it out when done.
126 private class ControllerResults extends Controller.Result {
128 public void updateMailboxListCallback(MessagingException result, long accountId,
134 if (result != null) {
261 /* package */ Controller.Result getControllerResultsForTest() {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSource.java 143 return new Result(query, cursor);
173 private class Result extends SuggestionCursorWrapper implements SourceResult {
175 public Result(String userQuery, SuggestionCursor cursor) {
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 238 LLVMGenericValueRef Result, *GVArgs;
246 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs);
249 return alloc_generic_value(Result);
270 int I, NumArgs, NumEnv, EnvSize, Result;
308 Result = LLVMRunFunctionAsMain(EE, F, NumArgs, CArgs, CEnv);
314 CAMLreturn(Val_int(Result));
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 528 GenericValue Result;
536 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
541 return Result;
550 GenericValue Result = getConstantValue(Op0);
554 char* tmp = (char*) Result.PointerVal;
555 Result = PTOGV(tmp + Offset);
556 return Result;
784 GenericValue Result;
787 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
790 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble()
    [all...]
  /external/llvm/lib/VMCore/
DebugLoc.cpp 75 DebugLoc Result;
78 if (Scope == 0) return Result;
83 Result.LineCol = Line | (Col << 24);
89 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeRecordIdxEntry(Scope, 0);
91 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeInlinedAtIdxEntry(Scope,
94 return Result;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemValueOf.java 199 * result tree.
229 javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, "");
241 javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 115 template<typename Result, typename F, typename Arg1>
116 Result test_call_operator(F f, Arg1 arg1) {
  /external/skia/tests/
skia_test.cpp 46 static const char* result2string(Reporter::Result result) {
47 return result == Reporter::kPassed ? "passed" : "FAILED";
62 virtual void onReport(const char desc[], Reporter::Result result) {
64 SkDebugf("\t%s: %s\n", result2string(result), desc);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
CollatorICU.cpp 92 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const
97 return static_cast<Result>(ucol_strcoll(m_collator, lhs, lhsLength, rhs, rhsLength));
  /sdk/ide_common/src/com/android/ide/common/rendering/
LayoutLibrary.java 19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_REFLECTION;
29 import com.android.ide.common.rendering.api.Result;
32 import com.android.ide.common.rendering.api.Result.Status;
129 * object representing the result.
318 * @return a new {@link ILayoutScene} object that contains the result of the scene creation and
347 * Renders a Drawable. If the rendering is successful, the result image is accessible through
348 * {@link Result#getData()}. It is of type {@link BufferedImage}
350 * @return the result of the action.
352 public Result renderDrawable(DrawableParams params) {
384 * @return a {@link Result} indicating the status of the action, and if success, the paren
491 ILayoutResult result = null; local
550 Map<String, Map<String, IResourceValue>> result = local
741 Object result = mViewGetBaselineMethod.invoke(viewObject); local
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 347 ExprResult Result = DefaultArgumentPromotion(Args[i]);
348 if (Result.isInvalid())
350 Args[i] = Result.take();
    [all...]

Completed in 4426 milliseconds

1 2 3 4 5 6 7 891011>>