HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 176 - 200 of 1647) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/lib/Sema/
SemaCodeComplete.cpp 47 /// the result set (when it returns true) and which declarations should be
51 typedef CodeCompletionResult Result;
55 std::vector<Result> Results;
58 /// into the result set, used to ensure that no declaration ever gets into
59 /// the result set twice.
142 /// Closely matching the preferred type gives a boost to a result's
167 void AdjustResultPriorityForDecl(Result &R);
169 void MaybeAddConstructorResults(Result R);
216 Result *data() { return Results.empty()? nullptr : &Results.front(); }
239 /// When an Objective-C method declaration result is added, and tha
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_MifareStdMap.c 248 NFCSTATUS Result);
6065 NFCSTATUS result = NFCSTATUS_SUCCESS; local
    [all...]
phFriNfc_MifareULMap.c 202 NFCSTATUS Result = NFCSTATUS_SUCCESS;
206 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, NFCSTATUS_INVALID_PARAMETER);
246 return Result;
262 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
305 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
315 Result = ((NdefMap->Offset == PH_FRINFC_NDEFMAP_SEEK_BEGIN)?
320 return Result;
338 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
389 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
404 Result = phFriNfc_MfUL_H_SelectSector(NdefMap,
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 88 TokenInfo Result;
89 Result.Range.Start = currentLocation();
92 Result.Kind = TokenInfo::TK_CodeCompletion;
93 Result.Text = StringRef(CodeCompletionLocation, 0);
95 return Result;
99 Result.Kind = TokenInfo::TK_Eof;
100 Result.Text = "";
101 return Result;
106 Result.Kind = TokenInfo::TK_Comma;
107 Result.Text = Code.substr(0, 1)
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 50 Function *Result = Function::Create(
54 BasicBlock *BB = BasicBlock::Create(Context, Name, Result);
57 return Result;
68 Function *Result = startFunction<Signature>(M, "caller");
72 for (Argument &A : Result->args())
77 return Result;
84 Function *Result = startFunction<int32_t(void)>(M, "main");
87 endFunctionWithRet(Result, ReturnVal);
89 return Result;
96 Function *Result = startFunction<int32_t(int32_t, int32_t)>(M, Name)
    [all...]
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 113 StringRef Result = MatchingChild->getValue().findEquivalent(
116 if (!Result.empty() || IsAmbiguous)
117 return Result;
121 StringRef Result;
124 if (Result.empty()) {
125 Result = AllChildren[i];
132 return Result;
185 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
188 return Result;
Refactoring.cpp 36 if (int Result = run(ActionFactory)) {
37 return Result;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CharsTrie.java 19 import android.icu.util.BytesTrie.Result;
123 * @return The match/value Result.
125 public Result current() /*const*/ {
128 return Result.NO_MATCH;
132 valueResults_[node>>15] : Result.NO_VALUE;
140 * @return The match/value Result.
142 public Result first(int inUnit) {
152 * @return The match/value Result.
154 public Result firstForCodePoint(int cp) {
159 Result.NO_MATCH)
255 Result result=branchNext(pos, node, inUnit); local
721 Result result; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CharsTrie.java 18 import com.ibm.icu.util.BytesTrie.Result;
129 * @return The match/value Result.
132 public Result current() /*const*/ {
135 return Result.NO_MATCH;
139 valueResults_[node>>15] : Result.NO_VALUE;
147 * @return The match/value Result.
150 public Result first(int inUnit) {
160 * @return The match/value Result.
163 public Result firstForCodePoint(int cp) {
168 Result.NO_MATCH)
267 Result result=branchNext(pos, node, inUnit); local
747 Result result; local
    [all...]
  /external/llvm/unittests/DebugInfo/DWARF/
DWARFFormValueTest.cpp 58 DWARFFormValue Result(Form);
61 Result.extractValue(Data, &Offset, nullptr);
62 return Result;
70 DWARFFormValue Result(DW_FORM_udata);
72 Result.extractValue(Data, &Offset, nullptr);
73 return Result;
81 DWARFFormValue Result(DW_FORM_sdata);
83 Result.extractValue(Data, &Offset, nullptr);
84 return Result;
  /external/skia/include/codec/
SkCodec.h 64 * chunk, this could result in a failure to create the codec or a
85 * chunk, this could result in a failure to create the codec or a
133 * changes could result in a valid subset.
148 * Used to describe the result of a call to getPixels().
150 * Result is the union of possible results from subclasses.
152 enum Result {
269 * @return Result kSuccess, or another value explaining the type of failure.
271 Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options*,
278 Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
329 Result getYUV8Planes(const YUVSizeInfo& sizeInfo, void* planes[3])
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 23 import com.android.ide.common.rendering.api.Result;
46 private Result mLastResult;
49 public Result getResult() {
79 public Result render(long timeout, boolean forceMeasure) {
98 public Result animate(Object targetObject, String animationName,
116 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index,
139 public Result moveChild(Object parentView, Object childView, int index,
164 public Result removeChild(Object childView, IAnimationListener listener) {
207 /*package*/ BridgeRenderSession(RenderSessionImpl scene, Result lastResult) {
  /external/clang/test/SemaTemplate/
instantiate-expr-3.cpp 28 template<typename T, typename U, typename Result>
31 Result r = t += u; // expected-error{{ambiguous}}
51 template<typename T, typename U, typename Result>
54 Result result = t? : u; local
80 template<bool Cond, typename T, typename U, typename Result>
83 Result r = __builtin_choose_expr(Cond, t, u); // expected-error{{lvalue}}
  /external/clang/unittests/Tooling/
RewriterTestContext.h 88 SourceLocation Result = Sources.translateFileLineCol(
90 assert(Result.isValid());
91 return Result;
95 std::string Result;
96 llvm::raw_string_ostream OS(Result);
99 return Result;
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btPolyhedralContactClipping.java 61 public static void clipHullAgainstHull(Vector3 separatingNormal, btConvexPolyhedron hullA, btConvexPolyhedron hullB, Matrix4 transA, Matrix4 transB, float minDist, float maxDist, btDiscreteCollisionDetectorInterface.Result resultOut) {
62 CollisionJNI.btPolyhedralContactClipping_clipHullAgainstHull(separatingNormal, btConvexPolyhedron.getCPtr(hullA), hullA, btConvexPolyhedron.getCPtr(hullB), hullB, transA, transB, minDist, maxDist, btDiscreteCollisionDetectorInterface.Result.getCPtr(resultOut), resultOut);
65 public static void clipFaceAgainstHull(Vector3 separatingNormal, btConvexPolyhedron hullA, Matrix4 transA, btVector3Array worldVertsB1, float minDist, float maxDist, btDiscreteCollisionDetectorInterface.Result resultOut) {
66 CollisionJNI.btPolyhedralContactClipping_clipFaceAgainstHull(separatingNormal, btConvexPolyhedron.getCPtr(hullA), hullA, transA, btVector3Array.getCPtr(worldVertsB1), worldVertsB1, minDist, maxDist, btDiscreteCollisionDetectorInterface.Result.getCPtr(resultOut), resultOut);
69 public static boolean findSeparatingAxis(btConvexPolyhedron hullA, btConvexPolyhedron hullB, Matrix4 transA, Matrix4 transB, Vector3 sep, btDiscreteCollisionDetectorInterface.Result resultOut) {
70 return CollisionJNI.btPolyhedralContactClipping_findSeparatingAxis(btConvexPolyhedron.getCPtr(hullA), hullA, btConvexPolyhedron.getCPtr(hullB), hullB, transA, transB, sep, btDiscreteCollisionDetectorInterface.Result.getCPtr(resultOut), resultOut);
  /external/llvm/lib/Analysis/
Analysis.cpp 90 LLVMBool Result = verifyModule(*unwrap(M), OutMessages ? &MsgsOS : DebugOS);
96 if (Action == LLVMAbortProcessAction && Result)
102 return Result;
106 LLVMBool Result = verifyFunction(
110 if (Action == LLVMAbortProcessAction && Result)
113 return Result;
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
jhd1313m1.cxx 43 mraa::Result ret = m_i2c_lcd_rgb.address(m_rgb_address);
91 mraa::Result
94 mraa::Result ret;
113 mraa::Result
123 mraa::Result Jhd1313m1::command(uint8_t cmd)
128 mraa::Result Jhd1313m1::data(uint8_t cmd)
ssd1306.cxx 47 mraa::Result error = m_i2c_lcd_control.address(m_lcd_control_address);
116 mraa::Result
119 mraa::Result error = mraa::SUCCESS;
134 mraa::Result
137 mraa::Result error = mraa::SUCCESS;
147 mraa::Result
150 mraa::Result error = mraa::SUCCESS;
163 mraa::Result
166 mraa::Result error = mraa::SUCCESS;
184 mraa::Result
    [all...]
ssd1327.cxx 39 mraa::Result error = mraa::SUCCESS;
149 mraa::Result
152 mraa::Result error = mraa::SUCCESS;
178 mraa::Result
181 mraa::Result error = mraa::SUCCESS;
191 mraa::Result
194 mraa::Result error = mraa::SUCCESS;
215 mraa::Result
218 mraa::Result error = mraa::SUCCESS;
231 mraa::Result
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/tcs3414cs/
tcs3414cs.cxx 41 mraa::Result ret = m_i2Ctx.address(ADDR);
83 mraa::Result error = mraa::SUCCESS;
111 mraa::Result
113 mraa::Result error = mraa::SUCCESS;
122 mraa::Result
124 mraa::Result error = mraa::SUCCESS;
  /packages/apps/Messaging/src/com/android/messaging/util/
SafeAsyncTask.java 36 public abstract class SafeAsyncTask<Params, Progress, Result>
37 extends AsyncTask<Params, Progress, Result> {
81 public final SafeAsyncTask<Params, Progress, Result> executeOnThreadPool(
89 protected abstract Result doInBackgroundTimed(final Params... params);
92 protected final Result doInBackground(final Params... params) {
128 protected void onPostExecute(final Result result) {
  /external/clang/lib/AST/
ExprConstant.cpp 19 // * An evaluated result, valid only if constant folding has not failed.
23 // where it is possible to determine the evaluated result regardless.
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionParser.java 120 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor) {
121 if ( visitor instanceof BindingExpressionVisitor<?> ) return ((BindingExpressionVisitor<? extends Result>)visitor).visitBindingSyntax(this);
175 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor) {
176 if ( visitor instanceof BindingExpressionVisitor<?> ) return ((BindingExpressionVisitor<? extends Result>)visitor).visitDefaults(this);
230 public <Result> Result accept(ParseTreeVisitor<? extends Result> visitor)
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
st7735.cxx 47 mraa::Result error = mraa::SUCCESS;
190 mraa::Result
192 mraa::Result error = mraa::SUCCESS;
207 mraa::Result
209 mraa::Result error = mraa::SUCCESS;
219 mraa::Result
221 mraa::Result error = mraa::SUCCESS;
236 mraa::Result
238 mraa::Result error = mraa::SUCCESS;
248 mraa::Result
    [all...]
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunner.java 21 import org.junit.runner.Result;
43 Result result = jUnitCore.run(request); local
44 String status = result.wasSuccessful() ? PASSED_TEST_MARKER : FAILED_TEST_MARKER;

Completed in 1067 milliseconds

1 2 3 4 5 6 78 91011>>