/external/clang/test/SemaObjCXX/ |
static-cast.mm | 15 AutoreleaseObject& operator=(NSResponder* inValue); 16 AutoreleaseObject& operator=(const AutoreleaseObject& inValue); 18 AutoreleaseObject(const AutoreleaseObject& inValue);
|
/external/jpeg/ |
jdsample.c | 195 register JSAMPLE invalue; local 211 invalue = *inptr++; /* don't need GETJSAMPLE() here */ 213 *outptr++ = invalue; 238 register JSAMPLE invalue; local 247 invalue = *inptr++; /* don't need GETJSAMPLE() here */ 248 *outptr++ = invalue; 249 *outptr++ = invalue; 266 register JSAMPLE invalue; local 276 invalue = *inptr++; /* don't need GETJSAMPLE() here */ 277 *outptr++ = invalue; 309 register int invalue; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jdsample.c | 195 register JSAMPLE invalue; local 211 invalue = *inptr++; /* don't need GETJSAMPLE() here */ 213 *outptr++ = invalue; 238 register JSAMPLE invalue; local 247 invalue = *inptr++; /* don't need GETJSAMPLE() here */ 248 *outptr++ = invalue; 249 *outptr++ = invalue; 266 register JSAMPLE invalue; local 276 invalue = *inptr++; /* don't need GETJSAMPLE() here */ 277 *outptr++ = invalue; 309 register int invalue; local [all...] |
/external/webkit/Source/JavaScriptGlue/ |
JSUtils.cpp | 47 static CFTypeRef KJSValueToCFTypeInternal(JSValue inValue, ExecState *exec, ObjectImpList* inImps); 104 JSUserObject* KJSValueToJSObject(JSValue inValue, ExecState *exec) 108 if (inValue.inherits(&UserObjectImp::s_info)) { 109 UserObjectImp* userObjectImp = static_cast<UserObjectImp *>(asObject(inValue)); 114 JSValueWrapper* wrapperValue = new JSValueWrapper(inValue); 200 CFTypeRef KJSValueToCFTypeInternal(JSValue inValue, ExecState *exec, ObjectImpList* inImps) 202 if (!inValue) 209 if (inValue.isBoolean()) 211 result = inValue.toBoolean(exec) ? kCFBooleanTrue : kCFBooleanFalse; 216 if (inValue.isString() [all...] |
JSUtils.h | 58 JSUserObject *KJSValueToJSObject(JSValue inValue, ExecState *exec); 59 CFTypeRef KJSValueToCFType(JSValue inValue, ExecState *exec);
|
JSValueWrapper.cpp | 36 JSValueWrapper::JSValueWrapper(JSValue inValue) 37 : fValue(getThreadGlobalExecState()->globalData(), inValue)
|
/external/clang/test/CodeGenObjCXX/ |
arc-new-delete.mm | 7 void test_new(id invalue) { 10 // CHECK-NEXT: call void @objc_storeStrong(i8** [[INVALUEADDR]], i8* [[INVALUE:%.*]]) 33 new __strong id(invalue); 37 new __weak id(invalue);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
JSONObject.cpp | 647 JSValue inValue = unfiltered; 657 ASSERT(inValue.isObject()); 658 ASSERT(isJSArray(&m_exec->globalData(), asObject(inValue)) || asObject(inValue)->inherits(&JSArray::s_info)); 662 JSArray* array = asArray(inValue); 684 inValue = array->getIndex(index); 688 inValue = slot.getValue(m_exec, index); 690 inValue = jsUndefined(); 693 if (inValue.isObject()) { 697 outValue = inValue; [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
SerializedScriptValue.cpp | 620 JSValue inValue = in; 626 ASSERT(isArray(inValue)); 630 JSArray* inArray = asArray(inValue); 657 inValue = array->getIndex(index); 660 inValue = getSparseIndex(array, index, hasIndex); 668 if (dumpIfTerminal(inValue)) { 681 ASSERT(inValue.isObject()); 684 JSObject* inObject = asObject(inValue); 711 inValue = getProperty(object, properties[index]); 715 if (!inValue) { [all...] |
/external/webkit/Source/WebCore/platform/graphics/win/ |
QTPixelBuffer.cpp | 37 static OSStatus SetNumberValue(CFMutableDictionaryRef inDict, CFStringRef inKey, SInt32 inValue) 41 number = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &inValue);
|
/external/expat/lib/ |
xmltok_impl.c | [all...] |
/external/webkit/Source/WebCore/css/ |
CSSStyleSelector.h | 186 static bool createTransformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
|
CSSStyleSelector.cpp | [all...] |
/frameworks/base/core/java/android/text/format/ |
DateFormat.java | 654 private static String zeroPad(int inValue, int inMinDigits) { 655 return String.format(Locale.getDefault(), "%0" + inMinDigits + "d", inValue);
|
/external/libxml2/ |
HTMLparser.c | 4984 int invalue = 0; local [all...] |
/external/mdnsresponder/mDNSShared/ |
DebugServices.c | 143 void * inValue, 1131 void * inValue, 1137 DEBUG_UNUSED( inValue ); [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | [all...] |
/external/clang/test/Analysis/ |
retain-release.m | [all...] |