Searched refs:info (Results 276 - 300 of 5035) sorted by relevance

<<11121314151617181920>>

/external/libunwind/src/
H A Dos-qnx.c31 static int callback(const struct dl_phdr_info *info, size_t size, void *data) argument
37 for(i=0; i<info->dlpi_phnum; i++) {
38 int segbase = info->dlpi_addr + info->dlpi_phdr[i].p_vaddr;
45 cur_map->start = info->dlpi_addr + info->dlpi_phdr[i].p_vaddr;
46 cur_map->end = cur_map->start + info->dlpi_phdr[i].p_memsz;
47 cur_map->offset = info->dlpi_phdr[i].p_offset;
48 cur_map->path = strdup(info->dlpi_name);
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DEdge.java46 * More precisely any {@link Edge} whose {@link #info} is strictly positive
47 * corresponds to an exception handler. The actual value of {@link #info} is
63 int info; field in class:Edge
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCallInfo.java50 protected GenericURI info; field in class:CallInfo
69 info.encode(buffer);
93 return info;
111 * @param info is the URI to set.
113 public void setInfo(javax.sip.address.URI info) { argument
114 this.info = (GenericURI) info;
119 if (this.info != null)
120 retval.info = (GenericURI) this.info
[all...]
/external/skia/gm/
H A Dpeekpixels.cpp15 SkImageInfo info = canvas->imageInfo(); local
18 canvas->drawCircle(SkScalarHalf(info.width()), SkScalarHalf(info.height()),
19 SkScalarHalf(info.width()), paint);
36 SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100); variable
37 SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
46 SkImageInfo info; variable
48 const void* addr = surfCanvas->peekPixels(&info, &rowBytes);
49 if (addr && bitmap.installPixels(info, const_cast<void*>(addr), rowBytes)) {
/external/skia/include/core/
H A DSkImageGenerator.h59 virtual bool getInfo(SkImageInfo* info) { return this->onGetInfo(info); } argument
60 virtual bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) { argument
61 return this->onGetPixels(info, pixels, rowBytes, NULL, NULL);
82 bool getInfo(SkImageInfo* info);
86 * least (info.fHeight - 1) * rowBytes + (info.fWidth *
92 * @param info A description of the format (config, size)
94 * to the info returned by getInfo().
100 * If info i
[all...]
/external/skia/src/animator/
H A DSkGetCondensedInfo.cpp64 const SkMemberInfo* info = SkMemberInfo::Find(type, matchPtr); local
65 SkASSERT(info);
66 return info;
71 const SkMemberInfo* info = gInfoTables[lookup]; local
72 if (info->fType == SkType_BaseClassInfo) {
73 int baseTypeLookup = info->fOffset;
79 info++;
81 SkASSERT(info->fType != SkType_BaseClassInfo);
84 int index = _searchByName(&info->fName, count, strings, match);
87 return &info[inde
92 const SkMemberInfo* info = gInfoTables[lookup]; local
[all...]
/external/skia/src/image/
H A DSkImage_Raster.cpp17 static bool ValidArgs(const Info& info, size_t rowBytes) { argument
21 if (info.fWidth < 0 || info.fHeight < 0) {
24 if (info.fWidth > maxDimension || info.fHeight > maxDimension) {
27 if ((unsigned)info.fColorType > (unsigned)kLastEnum_SkColorType) {
30 if ((unsigned)info.fAlphaType > (unsigned)kLastEnum_SkAlphaType) {
34 if (kUnknown_SkColorType == info.colorType()) {
40 if (rowBytes < SkImageMinRowBytes(info)) {
44 int64_t size = (int64_t)info
92 SkImage_Raster(const Info& info, SkData* data, size_t rowBytes) argument
104 SkImage_Raster(const Info& info, SkPixelRef* pr, size_t rowBytes) argument
137 const SkImageInfo info = fBitmap.info(); local
153 NewRasterCopy(const SkImageInfo& info, const void* pixels, size_t rowBytes) argument
171 NewRasterData(const SkImageInfo& info, SkData* data, size_t rowBytes) argument
192 SkNewImageFromPixelRef(const SkImageInfo& info, SkPixelRef* pr, size_t rowBytes) argument
[all...]
H A DSkSurface_Raster.cpp39 bool SkSurface_Raster::Valid(const SkImageInfo& info, size_t rowBytes) { argument
43 switch (info.fColorType) {
61 uint64_t minRB = (uint64_t)info.fWidth << shift;
71 uint64_t size = sk_64_mul(info.fHeight, rowBytes);
79 SkSurface_Raster::SkSurface_Raster(const SkImageInfo& info, void* pixels, size_t rb) argument
80 : INHERITED(info)
82 fBitmap.installPixels(info, pixels, rb);
87 : INHERITED(pr->info().fWidth, pr->info().fHeight)
89 const SkImageInfo& info local
104 onNewSurface(const SkImageInfo& info) argument
139 NewRasterDirect(const SkImageInfo& info, void* pixels, size_t rowBytes) argument
150 NewRaster(const SkImageInfo& info) argument
[all...]
/external/skia/tools/
H A DLazyDecodeBitmap.cpp37 SkImageInfo info; local
38 if ((NULL == gen.get()) || !gen->getInfo(&info)) {
42 if ((!FLAGS_useVolatileCache) || (info.fWidth * info.fHeight < 32 * 1024)) {
/external/valgrind/main/none/tests/linux/
H A Dblockfault.c6 static void handler(int sig, siginfo_t *info, void *v) argument
8 printf("info: sig=%d code=%d addr=%p\n",
9 info->si_signo, info->si_code, info->si_addr);
/external/skia/src/core/
H A DSkDevice.cpp35 SkBaseDevice* SkBaseDevice::createCompatibleDevice(const SkImageInfo& info) { argument
36 return this->onCreateDevice(info, kGeneral_Usage);
39 SkBaseDevice* SkBaseDevice::createCompatibleDeviceForSaveLayer(const SkImageInfo& info) { argument
40 return this->onCreateDevice(info, kSaveLayer_Usage);
80 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) { argument
82 SkASSERT(info.width() > 0 && info.height() > 0);
84 SkASSERT(rowBytes >= info.minRowBytes());
88 SkASSERT(x + info.width() <= srcInfo.width());
89 SkASSERT(y + info
94 writePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, int x, int y) argument
117 accessPixels(SkImageInfo* info, size_t* rowBytes) argument
129 onAccessPixels(SkImageInfo* info, size_t* rowBytes) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterface.cpp51 static void testInterfaceAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
53 v8::Handle<v8::Object> holder = info.Holder();
55 v8SetReturnValueFast(info, WTF::getPtr(impl->testInterfaceAttribute()), impl);
58 static void testInterfaceAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
61 TestInterfaceImplementationV8Internal::testInterfaceAttributeAttributeGetter(info);
65 static void testInterfaceAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
67 v8::Handle<v8::Object> holder = info.Holder();
68 ExceptionState exceptionState(ExceptionState::SetterContext, "testInterfaceAttribute", "TestInterface", holder, info.GetIsolate());
69 if (!V8TestInterface::hasInstance(v8Value, info.GetIsolate())) {
75 TestInterfaceImplementation* cppValue = V8TestInterface::toImplWithTypeCheck(info
79 testInterfaceAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
86 doubleAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
93 doubleAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
100 doubleAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
114 doubleAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
121 floatAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
128 floatAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
135 floatAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
149 floatAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
156 unrestrictedDoubleAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
163 unrestrictedDoubleAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
170 unrestrictedDoubleAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
179 unrestrictedDoubleAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
186 unrestrictedFloatAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
193 unrestrictedFloatAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
200 unrestrictedFloatAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
209 unrestrictedFloatAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
216 staticStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
221 staticStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
228 staticStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
234 staticStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
241 alwaysExposedAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
248 alwaysExposedAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
255 alwaysExposedAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
264 alwaysExposedAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
271 workerExposedAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
278 workerExposedAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
285 workerExposedAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
294 workerExposedAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
301 windowExposedAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
308 windowExposedAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
315 windowExposedAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
324 windowExposedAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
331 implementsStaticReadOnlyLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
336 implementsStaticReadOnlyLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
343 implementsStaticStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
348 implementsStaticStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
355 implementsStaticStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
361 implementsStaticStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
368 implementsReadonlyStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
375 implementsReadonlyStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
382 implementsStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
389 implementsStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
396 implementsStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
404 implementsStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
411 implementsNodeAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
418 implementsNodeAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
425 implementsNodeAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
439 implementsNodeAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
446 implementsEventHandlerAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
454 implementsEventHandlerAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
461 implementsEventHandlerAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
469 implementsEventHandlerAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
476 implementsRuntimeEnabledNodeAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
483 implementsRuntimeEnabledNodeAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
490 implementsRuntimeEnabledNodeAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
504 implementsRuntimeEnabledNodeAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
511 implementsPerContextEnabledNodeAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
518 implementsPerContextEnabledNodeAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
525 implementsPerContextEnabledNodeAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
539 implementsPerContextEnabledNodeAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
546 implements2StaticStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
551 implements2StaticStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
558 implements2StaticStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
564 implements2StaticStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
571 implements2StringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
578 implements2StringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
585 implements2StringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
593 implements2StringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
600 implements3StringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
607 implements3StringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
614 implements3StringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
622 implements3StringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
629 implements3StaticStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
634 implements3StaticStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
641 implements3StaticStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
647 implements3StaticStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
655 partialLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
664 partialLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
673 partialLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
684 partialLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
693 partialStaticLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
700 partialStaticLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
709 partialStaticLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
718 partialStaticLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
727 partialCallWithExecutionContextLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
737 partialCallWithExecutionContextLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
746 partialCallWithExecutionContextLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
758 partialCallWithExecutionContextLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
767 partialPartialEnumTypeAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
776 partialPartialEnumTypeAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
785 partialPartialEnumTypeAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
798 partialPartialEnumTypeAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
807 stringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
819 stringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
828 stringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
838 stringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
846 partial2LongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
853 partial2LongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
860 partial2LongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
869 partial2LongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
876 partial2StaticLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
881 partial2StaticLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
888 partial2StaticLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
895 partial2StaticLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
902 partial3LongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
909 partial3LongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
916 partial3LongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
925 partial3LongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
932 partial3StaticLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
937 partial3StaticLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
944 partial3StaticLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
951 partial3StaticLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
958 TestInterfaceImplementationConstructorGetter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
968 TestInterfaceImplementationForceSetAttributeOnThis(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
974 TestInterfaceImplementationForceSetAttributeOnThisCallback(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
979 voidMethodTestInterfaceEmptyArgMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
997 voidMethodTestInterfaceEmptyArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1004 voidMethodDoubleArgFloatArgMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1032 voidMethodDoubleArgFloatArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1039 voidMethodUnrestrictedDoubleArgUnrestrictedFloatArgMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1057 voidMethodUnrestrictedDoubleArgUnrestrictedFloatArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1064 voidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1070 voidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1077 voidMethodMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1083 voidMethodMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1090 alwaysExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1096 alwaysExposedMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1103 workerExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1109 workerExposedMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1116 windowExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1122 windowExposedMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1129 alwaysExposedStaticMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1134 alwaysExposedStaticMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1141 workerExposedStaticMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1146 workerExposedStaticMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1153 windowExposedStaticMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1158 windowExposedStaticMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1165 windowAndServiceWorkerExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1171 windowAndServiceWorkerExposedMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1178 voidMethodPartailOverloadMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1184 voidMethodPartailOverloadMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1191 voidMethodPartailOverloadMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1196 voidMethodPartailOverloadMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1203 implementsVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1209 implementsVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1216 implementsComplexMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1245 implementsComplexMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1252 implementsCustomVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1259 implementsStaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1264 implementsStaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1271 implements2VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1277 implements2VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1284 implements3VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1290 implements3VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1297 implements3StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1302 implements3StaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1310 partialVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1318 partialVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1327 partialStaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1334 partialStaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1343 partialVoidMethodLongArgMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1361 partialVoidMethodLongArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1370 partialCallWithExecutionContextRaisesExceptionVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1384 partialCallWithExecutionContextRaisesExceptionVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1393 partialVoidMethodPartialCallbackTypeArgMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1409 partialVoidMethodPartialCallbackTypeArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1418 shortMethodWithShortArgumentImplementedInPrivateScriptMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1439 shortMethodWithShortArgumentImplementedInPrivateScriptMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1447 partial2VoidMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1453 partial2StaticVoidMethod1Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1458 voidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1472 voidMethodPartialOverloadMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1479 voidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1492 voidMethodPartialOverloadMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1499 partial2VoidMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1509 partial2VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1534 partial2VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1541 partial2StaticVoidMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1550 partial2StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1575 partial2StaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1582 toStringMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1588 toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1595 iteratorMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1608 iteratorMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
1615 indexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1624 indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1631 indexedPropertySetter(uint32_t index, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1641 indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1648 indexedPropertyDeleter(uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean>& info) argument
1656 indexedPropertyDeleterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean>& info) argument
1663 namedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1678 namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1685 namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1701 namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
1708 namedPropertyQuery(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info) argument
1722 namedPropertyQueryCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info) argument
1729 namedPropertyDeleter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Boolean>& info) argument
1738 namedPropertyDeleterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Boolean>& info) argument
1745 namedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info) argument
1759 namedPropertyEnumeratorCallback(const v8::PropertyCallbackInfo<v8::Array>& info) argument
[all...]
H A DV8TestInterfaceNode.cpp39 static void stringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
41 v8::Handle<v8::Object> holder = info.Holder();
43 v8SetReturnValueString(info, impl->stringAttribute(), info.GetIsolate());
46 static void stringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
49 TestInterfaceNodeV8Internal::stringAttributeAttributeGetter(info);
53 static void stringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
55 v8::Handle<v8::Object> holder = info.Holder();
61 static void stringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
64 TestInterfaceNodeV8Internal::stringAttributeAttributeSetter(v8Value, info);
68 readonlyTestInterfaceEmptyAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
75 readonlyTestInterfaceEmptyAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
82 eventHandlerAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
90 eventHandlerAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
97 eventHandlerAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
104 eventHandlerAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
111 perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
118 perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
125 perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterForMainWorld(const v8::PropertyCallbackInfo<v8::Value>& info) argument
132 perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterCallbackForMainWorld(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
139 reflectStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
146 reflectStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
153 reflectStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
161 reflectStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
169 reflectUrlStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) argument
176 reflectUrlStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
183 reflectUrlStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
191 reflectUrlStringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) argument
199 testInterfaceEmptyMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
205 testInterfaceEmptyMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
212 perWorldBindingsTestInterfaceEmptyMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
218 perWorldBindingsTestInterfaceEmptyMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
225 perWorldBindingsTestInterfaceEmptyMethodMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) argument
231 perWorldBindingsTestInterfaceEmptyMethodMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) argument
238 perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethod(const v8::FunctionCallbackInfo<v8::Value>& info) argument
252 perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) argument
259 perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) argument
273 perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
/external/chromium_org/v8/src/
H A Dcompiler.cc181 // passed in shared info, rather than creating a new one.
297 explicit HOptimizedGraphBuilderWithPositions(CompilationInfo* info) argument
298 : HOptimizedGraphBuilder(info) {
333 DCHECK(info()->IsOptimizing());
334 DCHECK(!info()->IsCompilingForDebugging());
337 // shared function info.
338 DCHECK(!info()->shared_info()->optimization_disabled());
349 if (info()->opt_count() > kMaxOptCount) {
361 Scope* scope = info()->scope();
367 if (info()
605 RecordFunctionCompilation(Logger::LogEventsAndTags tag, CompilationInfo* info, Handle<SharedFunctionInfo> shared) argument
639 CompileUnoptimizedCode(CompilationInfo* info) argument
655 GetUnoptimizedCodeCommon( CompilationInfo* info) argument
716 InsertCodeIntoOptimizedCodeMap(CompilationInfo* info) argument
737 CompileOptimizedPrologue(CompilationInfo* info) argument
746 GetOptimizedCodeNow(CompilationInfo* info) argument
777 GetOptimizedCodeLater(CompilationInfo* info) argument
902 EnsureDeoptimizationSupport(CompilationInfo* info) argument
991 CompileToplevel(CompilationInfo* info) argument
1233 CompileStreamedScript( CompilationInfo* info, int source_length) argument
1400 DebuggerWantsEagerCompilation(CompilationInfo* info, bool allow_lazy_without_ctx) argument
1407 CompilationPhase(const char* name, CompilationInfo* info) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_winsys.c104 struct drm_radeon_info info; local
107 memset(&info, 0, sizeof(info));
125 info.value = (unsigned long)&value;
126 info.request = request;
128 &info, sizeof(info)) != 0) {
153 struct drm_radeon_info info; local
156 memset(&info, 0, sizeof(info));
335 radeon_query_info(struct radeon_winsys *rws, struct radeon_info *info) argument
[all...]
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_winsys.c104 struct drm_radeon_info info; local
107 memset(&info, 0, sizeof(info));
125 info.value = (unsigned long)&value;
126 info.request = request;
128 &info, sizeof(info)) != 0) {
153 struct drm_radeon_info info; local
156 memset(&info, 0, sizeof(info));
335 radeon_query_info(struct radeon_winsys *rws, struct radeon_info *info) argument
[all...]
/external/iptables/extensions/
H A Dlibxt_devgroup.c72 struct xt_devgroup_info *info = cb->data; local
79 info->src_group = id;
80 info->src_mask = mask;
81 info->flags |= XT_DEVGROUP_MATCH_SRC;
83 info->flags |= XT_DEVGROUP_INVERT_SRC;
87 info->dst_group = id;
88 info->dst_mask = mask;
89 info->flags |= XT_DEVGROUP_MATCH_DST;
91 info->flags |= XT_DEVGROUP_INVERT_DST;
113 static void devgroup_show(const char *pfx, const struct xt_devgroup_info *info, argument
134 const struct xt_devgroup_info *info = (const void *)match->data; local
141 const struct xt_devgroup_info *info = (const void *)match->data; local
[all...]
H A Dlibxt_NFLOG.c43 struct xt_nflog_info *info = (struct xt_nflog_info *)t->data; local
45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
60 static void nflog_print(const struct xt_nflog_info *info, char *prefix) argument
62 if (info->prefix[0] != '\0') {
64 xtables_save_string(info->prefix);
66 if (info->group)
67 printf(" %snflog-group %u", prefix, info->group);
68 if (info->len)
69 printf(" %snflog-range %u", prefix, info->len);
70 if (info
77 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local
84 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local
[all...]
H A Dlibxt_TOS.c96 struct ipt_tos_target_info *info = cb->data; local
103 info->tos = cb->val.tos_value;
108 struct xt_tos_target_info *info = cb->data; local
113 info->tos_value = cb->val.tos_value;
114 info->tos_mask = cb->val.tos_mask;
117 info->tos_value = 0;
118 info->tos_mask = ~cb->val.u8;
121 info->tos_value = cb->val.u8;
122 info->tos_mask = cb->val.u8;
125 info
141 const struct ipt_tos_target_info *info = (const void *)target->data; local
151 const struct xt_tos_target_info *info = (const void *)target->data; local
174 const struct ipt_tos_target_info *info = (const void *)target->data; local
181 const struct xt_tos_target_info *info = (const void *)target->data; local
[all...]
/external/chromium_org/third_party/webrtc/modules/video_capture/android/
H A Ddevice_info_android.cc62 // Camera info; populated during DeviceInfoAndroid::Initialize() and immutable
125 AndroidCameraInfo info; local
126 info.name = camera["name"].asString();
127 info.front_facing = camera["front_facing"].asBool();
128 info.orientation = camera["orientation"].asInt();
132 info.resolutions.push_back(std::make_pair(
138 info.mfpsRanges.push_back(std::make_pair(mfpsRange["min_mfps"].asInt(),
141 g_camera_info->push_back(info);
187 const AndroidCameraInfo& info = g_camera_info->at(deviceNumber); local
188 if (info
200 const AndroidCameraInfo* info = FindCameraInfoByName(deviceUniqueIdUTF8); local
223 const AndroidCameraInfo* info = FindCameraInfoByName(deviceUniqueIdUTF8); local
234 const AndroidCameraInfo* info = FindCameraInfoByName(deviceUniqueIdUTF8); local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8WorkerGlobalScopeCustom.cpp48 static void setTimeoutOrInterval(const v8::FunctionCallbackInfo<v8::Value>& info, bool singleShot) argument
50 WorkerGlobalScope* workerGlobalScope = V8WorkerGlobalScope::toImpl(info.Holder());
53 int argumentCount = info.Length();
57 v8::Handle<v8::Value> function = info[0];
63 ScriptState* scriptState = ScriptState::current(info.GetIsolate());
68 v8SetReturnValue(info, 0);
72 action = adoptPtr(new ScheduledAction(scriptState, toCoreString(function.As<v8::String>()), KURL(), info.GetIsolate()));
79 params[i] = info[i+2];
82 action = adoptPtr(new ScheduledAction(scriptState, v8::Handle<v8::Function>::Cast(function), paramCount, params.get(), info.GetIsolate()));
87 int32_t timeout = argumentCount >= 2 ? info[
97 setTimeoutMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
102 setIntervalMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
H A DV8InjectedScriptHostCustom.cpp85 void V8InjectedScriptHost::inspectedObjectMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
87 if (info.Length() < 1)
90 if (!info[0]->IsInt32()) {
91 V8ThrowException::throwTypeError("argument has to be an integer", info.GetIsolate());
95 InjectedScriptHost* host = V8InjectedScriptHost::toImpl(info.Holder());
96 InjectedScriptHost::InspectableObject* object = host->inspectedObject(info[0]->ToInt32()->Value());
97 v8SetReturnValue(info, object->get(ScriptState::current(info.GetIsolate())).v8Value());
117 void V8InjectedScriptHost::internalConstructorNameMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
119 if (info
141 isHTMLAllCollectionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
154 subtypeMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
194 functionDetailsMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
224 collectionEntriesMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
236 getInternalPropertiesMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
280 getEventListenersMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
312 inspectMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
324 evalMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
348 evaluateWithExceptionDetailsMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
377 setFunctionVariableValueMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
392 getFunctionLocation(const v8::FunctionCallbackInfo<v8::Value>& info, String* scriptId, int* lineNumber, int* columnNumber) argument
405 debugFunctionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
417 undebugFunctionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
429 monitorFunctionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
449 unmonitorFunctionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
461 callFunctionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
492 suppressWarningsAndCallFunctionMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
503 setNonEnumPropertyMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_track_metrics_host.cc30 TrackInfo& info = it->second; local
31 ReportDuration(info);
55 TrackInfo info = {is_audio, is_remote, base::TimeTicks::Now()};
56 tracks_[id] = info;
63 TrackInfo& info = tracks_[id];
64 ReportDuration(info);
68 void MediaStreamTrackMetricsHost::ReportDuration(const TrackInfo& info) { argument
69 base::TimeDelta duration = base::TimeTicks::Now() - info.timestamp;
70 if (info.is_remote) {
71 if (info
[all...]
/external/eigen/blas/
H A Dlevel2_real_impl.h37 int info = 0; local
38 if(UPLO(*uplo)==INVALID) info = 1;
39 else if(*n<0) info = 2;
40 else if(*lda<std::max(1,*n)) info = 5;
41 else if(*incx==0) info = 7;
42 else if(*incy==0) info = 10;
43 if(info)
44 return xerbla_(SCALAR_SUFFIX_UP"SYMV ",&info,6);
107 int info = 0; local
108 if(UPLO(*uplo)==INVALID) info
168 int info = 0; local
255 int info = 0; local
307 int info = 0; local
347 int info = 0; local
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_file_system_helper_unittest.cc213 for (std::list<BrowsingDataFileSystemHelper::FileSystemInfo>::iterator info =
214 file_system_info_list_->begin(); info != file_system_info_list_->end();
215 ++info) {
216 if (info->origin == kOrigin1) {
219 EXPECT_FALSE(ContainsKey(info->usage_map, kPersistent));
220 EXPECT_TRUE(ContainsKey(info->usage_map, kTemporary));
222 info->usage_map[storage::kFileSystemTypeTemporary]);
223 } else if (info->origin == kOrigin2) {
226 EXPECT_TRUE(ContainsKey(info->usage_map, kPersistent));
227 EXPECT_FALSE(ContainsKey(info
256 BrowsingDataFileSystemHelper::FileSystemInfo info = local
284 std::list<BrowsingDataFileSystemHelper::FileSystemInfo>::iterator info = local
[all...]

Completed in 2878 milliseconds

<<11121314151617181920>>