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

<<61626364656667686970>>

  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
globals.c 41 double result = pf[0] * d[1][1] * s.d * us * l; local
42 return (result == 0 ? 0 : -1);
locals.cpp 13 // CHECK: result = 0
44 double result = pf[0] * d[1][1] * s.f * us * l; local
45 return (result == 0 ? 0 : -1);
  /frameworks/compile/mclinker/lib/LD/
LDSection.cpp 72 LDSection* result = g_SectFactory->allocate(); local
73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
74 return result;
RelocData.cpp 31 RelocData* result = g_RelocDataFactory->allocate(); local
32 new (result) RelocData(pSection);
33 return result;
  /frameworks/compile/mclinker/lib/Script/
StringList.cpp 42 StringList* result = g_StringListFactory->allocate(); local
43 new (result) StringList();
44 return result;
WildcardPattern.cpp 50 WildcardPattern* result = g_WildcardPatternFactory->allocate(); local
51 new (result) WildcardPattern(pPattern, pPolicy);
52 return result;
  /frameworks/compile/mclinker/lib/Support/
TargetRegistry.cpp 68 const Target* result = NULL; local
75 result = *it;
80 if (result == NULL) {
93 result = lookupTarget(pTriple.getTriple(), error);
94 if (result == NULL) {
100 return result;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToARMStub.cpp 64 bool result = false; local
77 result = true;
85 return result;
ARMToTHMStub.cpp 66 bool result = false; local
77 result = true;
86 result = true;
93 return result;
THMToARMStub.cpp 73 bool result = false; local
85 result = true;
91 result = true;
99 result = true;
106 return result;
THMToTHMStub.cpp 75 bool result = false; local
87 result = true;
93 result = true;
103 return result;
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocationFunctions.h 25 T1 result = 0; local
32 result |= static_cast<T1>(valBit) << bit;
36 return result;
40 static HexagonRelocator::Result Name(Relocation& pEntry, \
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 33 uint64_t result = 0; local
37 result += got->size();
39 return result;
  /frameworks/compile/mclinker/unittests/
GCFactoryListTraitsTest.h 59 Node* result = allocate(); local
60 new (result) Node(pInit);
61 return result;
StaticResolverTest.cpp 58 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
59 ASSERT_TRUE(result);
84 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
85 ASSERT_TRUE(result);
111 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
112 ASSERT_TRUE(result);
138 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
139 ASSERT_TRUE(result);
159 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
160 ASSERT_TRUE(result);
188 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
209 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
234 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
257 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
BuildInfoUtil.java 44 T result = null; local
50 Preconditions.check(result == null, "Should have only one %s",
52 result = info;
54 return result;
  /frameworks/minikin/app/
HyphTool.cpp 37 std::vector<uint8_t> result; local
53 hyph->hyphenate(&result, word.data(), word.size());
55 if (result[i] != 0) {
  /frameworks/native/libs/input/tests/
InputChannel_test.cpp 63 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
66 ASSERT_EQ(OK, result)
114 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
117 ASSERT_EQ(OK, result)
128 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
131 ASSERT_EQ(OK, result)
144 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
147 ASSERT_EQ(OK, result)
  /frameworks/native/services/batteryservice/
IBatteryPropertiesRegistrar.cpp 93 status_t result = getProperty(id, &val); local
95 reply->writeInt32(result);
  /frameworks/native/services/inputflinger/
InputManager.cpp 54 status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY); local
55 if (result) {
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
57 return result;
60 result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
61 if (result) {
62 ALOGE("Could not start InputReader thread due to error %d.", result);
65 return result;
72 status_t result = mReaderThread->requestExitAndWait(); local
73 if (result) {
    [all...]
  /frameworks/native/services/inputflinger/host/
InputFlinger.cpp 51 String8 result; local
57 result.appendFormat("Permission Denial: "
60 dumpInternal(result);
62 write(fd, result.string(), result.size());
66 void InputFlinger::dumpInternal(String8& result) {
67 result.append("INPUT FLINGER (dumpsys inputflinger)\n");
68 mHost->dump(result);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ResultException.java 21 * Class for errors in the Result object.
30 public ResultException(ResultCode result) {
36 switch (result) {
46 "For result code, " + result +
52 mResult = result;
57 public ResultException(ResultCode result, String explanation) {
58 this(result);
62 public ResultException(ResultCode result, int additionalInfo) {
63 this(result);
78 public ResultCode result() { method in class:ResultException
    [all...]
  /frameworks/support/v4/api20/android/support/v4/app/
RemoteInputCompatApi20.java 29 RemoteInputCompatBase.RemoteInput[] result = factory.newArray(srcArray.length); local
32 result[i] = factory.build(src.getResultKey(), src.getLabel(), src.getChoices(),
35 return result;
42 RemoteInput[] result = new RemoteInput[srcArray.length]; local
45 result[i] = new RemoteInput.Builder(src.getResultKey())
52 return result;
  /frameworks/support/v4/api21/android/support/v4/media/
ParceledListSliceAdapterApi21.java 40 Object result = null; local
42 result = sConstructor.newInstance(itemList);
46 return result;
  /frameworks/support/v4/java/android/support/v4/widget/
Space.java 60 int result = size; local
66 result = size;
69 result = Math.min(size, specSize);
72 result = specSize;
75 return result;

Completed in 862 milliseconds

<<61626364656667686970>>