HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 801 - 825 of 11920) sorted by null

<<31323334353637383940>>

  /frameworks/base/core/jni/
android_text_AndroidBidi.cpp 34 jint result = 0; local
46 result = ubidi_getParaLevel(bidi);
56 return result;
  /frameworks/base/libs/hwui/tests/unit/
FontRendererTests.cpp 47 auto result = fontRenderer.renderDropShadow(&paint, glyphs.data(), glyphs.size(), local
49 ASSERT_NE(nullptr, result.image);
50 EXPECT_FALSE(isZero(result.image, result.width * result.height));
51 EXPECT_LE(bounds.getWidth() + radius * 2, (int) result.width);
52 EXPECT_LE(bounds.getHeight() + radius * 2, (int) result.height);
53 delete result.image;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
ObjectFormat.java 31 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target); local
32 result.setObjectClass(getBoxedClass(clazz));
34 result.setDimensions(count);
36 result.setBytesPerSample(bytesPerSampleForClass(clazz, target));
37 return result;
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.cpp 46 NativeFrame* result = new NativeFrame(size_); local
48 result->WriteData(data_, 0, size_);
49 return result;
  /frameworks/base/opengl/java/android/opengl/
EGLObjectHandle.java 66 int result = 17; local
67 result = 31 * result + (int) (mHandle ^ (mHandle >>> 32));
68 return result;
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLDisplayImpl.java 45 int result = 17; local
46 result = 31 * result + (int) (mEGLDisplay ^ (mEGLDisplay >>> 32));
47 return result;
EGLSurfaceImpl.java 50 int result = 17; local
51 result = 31 * result + (int) (mEGLSurface ^ (mEGLSurface >>> 32));
52 return result;
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
parameters.cpp 30 double result = pf[0] * ppd[1][1] * s.c * us * l; local
31 return result;
44 double result = test_parameters(&f, d, s); local
45 return(result == 0 ? 0 : -1);
pass-struct.c 35 int result = test_struct(s); local
36 return(result == 20 ? 0 : -1);
  /frameworks/compile/mclinker/lib/LD/
ELFReaderIf.cpp 33 ResolveInfo::Type result = static_cast<ResolveInfo::Type>(pInfo & 0xF); local
34 if (pShndx == llvm::ELF::SHN_ABS && result == ResolveInfo::Section) {
42 return result;
LDContext.cpp 59 size_t result = 1; local
61 for (; result != size; ++result)
62 if (m_SectionTable[result]->name() == pName)
63 return result;
RelocationFactory.cpp 72 Relocation* result = allocate(); local
73 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
74 return result;
78 Relocation* result = allocate(); local
79 new (result) Relocation(0, 0, 0, 0);
80 return result;
SectionData.cpp 32 SectionData* result = g_SectDataFactory->allocate(); local
33 new (result) SectionData(pSection);
34 return result;
  /frameworks/compile/mclinker/lib/Script/
FileToken.cpp 34 FileToken* result = g_FileTokenFactory->allocate(); local
35 new (result) FileToken(pName, pAsNeeded);
36 return result;
NameSpec.cpp 34 NameSpec* result = g_NameSpecFactory->allocate(); local
35 new (result) NameSpec(pName, pAsNeeded);
36 return result;
StrToken.cpp 34 StrToken* result = g_StrTokenFactory->allocate(); local
35 new (result) StrToken(String, pString);
36 return result;
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 97 uint64_t result = 0; local
111 result = ((*(pBuf + 3) & 0x7f) << 21) | ((*(pBuf + 2) & 0x7f) << 14) |
127 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
132 return result;
138 uint64_t result; local
141 result = byte & 0x7f;
143 return result;
146 result |= ((byte & 0x7f) << 7);
148 return result;
151 result |= (byte & 0x7f) << 14
185 uint64_t result = 0; local
206 uint64_t result = 0; local
    [all...]
MemoryAreaFactory.cpp 29 MemoryArea* result = allocate(); local
30 new (result) MemoryArea(name);
31 m_AreaMap[name] = result;
32 return result;
43 MemoryArea* result = allocate(); local
44 new (result) MemoryArea(name);
45 m_AreaMap[name] = result;
46 return result;
56 MemoryArea* result = allocate(); local
57 new (result) MemoryArea(base, pSize)
    [all...]
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLObjectHandle.java 66 int result = 17; local
67 result = 31 * result + (int) (mHandle ^ (mHandle >>> 32));
68 return result;
  /frameworks/native/services/sensorservice/
LinearAccelerationSensor.cpp 52 bool result = mGravitySensor.process(outEvent, event); local
53 if (result && event.type == SENSOR_TYPE_ACCELEROMETER) {
  /frameworks/support/v4/java/android/support/v4/database/
DatabaseUtilsCompat.java 53 String[] result = new String[originalValues.length + newValues.length ]; local
54 System.arraycopy(originalValues, 0, result, 0, originalValues.length);
55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
56 return result;
  /frameworks/wilhelm/src/objects/
CAudioPlayer.c 27 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_audioPlayer_realize(thiz, async);
34 result = SndFile_Realize(thiz);
41 return result;
COutputMix.c 26 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_outputMix_realize(thiz, async);
33 return result;
  /frameworks/wilhelm/tests/sandbox/
dim.c 36 SLresult result; local
40 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
41 assert(SL_RESULT_SUCCESS == result);
43 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
44 assert(SL_RESULT_SUCCESS == result);
45 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
46 assert(SL_RESULT_SUCCESS == result);
50 result = (*engineEngine)->CreateOutputMix(engineEngine, &outputMixObject, 0, NULL, NULL);
51 assert(SL_RESULT_SUCCESS == result);
55 result = (*outputMixObject)->GetInterface(outputMixObject, SL_IID_DYNAMICINTERFACEMANAGEMENT
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/python/
ds1307.py 46 result = myRTCClock.loadTime() variable
47 if (not result):

Completed in 2723 milliseconds

<<31323334353637383940>>