/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
V8TypedArrayCustom.h | 81 static void v8SetReturnValue(const CallbackInfo& info, TypedArray* impl) 84 v8SetReturnValueNull(info); 87 if (DOMDataStore::setReturnValueFromWrapper<Binding>(info.GetReturnValue(), impl)) 89 v8::Handle<v8::Object> wrapper = wrap(impl, info.Holder(), info.GetIsolate()); 90 info.GetReturnValue().Set(wrapper); 94 static void v8SetReturnValueForMainWorld(const CallbackInfo& info, TypedArray* impl) 96 ASSERT(DOMWrapperWorld::current(info.GetIsolate()).isMainWorld()); 98 v8SetReturnValueNull(info); 101 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<Binding>(info.GetReturnValue(), impl) 140 static const WrapperTypeInfo* info() { return &V8TypedArray<TypedArray>::wrapperTypeInfo; } function in class:blink::TypedArrayWrapperTraits [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
set_maps.c | 167 VpxVideoInfo info; local 177 memset(&info, 0, sizeof(info)); 184 info.codec_fourcc = encoder->fourcc; 185 info.frame_width = strtol(argv[2], NULL, 0); 186 info.frame_height = strtol(argv[3], NULL, 0); 187 info.time_base.numerator = 1; 188 info.time_base.denominator = fps; 190 if (info.frame_width <= 0 || 191 info.frame_height <= 0 | [all...] |
/external/chromium_org/third_party/skia/tests/ |
ImageNewShaderTest.cpp | 44 void runShaderTest(skiatest::Reporter* reporter, SkSurface* sourceSurface, SkSurface* destinationSurface, SkImageInfo& info) { 59 SkIRect rect = SkIRect::MakeWH(info.width(), info.height()); 94 for (int y = 0; y < info.height(); y++) { 97 for (int x = 1; x < info.width(); x++) { 105 SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); local 107 SkAutoTUnref<SkSurface> sourceSurface(SkSurface::NewRaster(info)); 108 SkAutoTUnref<SkSurface> destinationSurface(SkSurface::NewRaster(info)); 110 runShaderTest(reporter, sourceSurface.get(), destinationSurface.get(), info); 116 SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5) local 125 SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); local 134 SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5); local [all...] |
/external/libvpx/libvpx/examples/ |
twopass_encoder.c | 130 VpxVideoInfo info = {0}; local 149 info.codec_fourcc = encoder->fourcc; 150 info.time_base.numerator = 1; 151 info.time_base.denominator = fps; 152 info.frame_width = strtol(width_arg, NULL, 0); 153 info.frame_height = strtol(height_arg, NULL, 0); 155 if (info.frame_width <= 0 || 156 info.frame_height <= 0 || 157 (info.frame_width % 2) != 0 || 158 (info.frame_height % 2) != 0) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pt.c | 329 if (elements[i] == info->restart_index) { \ 355 const struct pipe_draw_info *info) 357 const unsigned prim = info->mode; 358 const unsigned start = info->start; 359 const unsigned count = info->count; 363 assert(info->primitive_restart); 427 struct pipe_draw_info info; local 429 util_draw_init_info(&info); 431 info.mode = mode; 432 info.start = start [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pt.c | 329 if (elements[i] == info->restart_index) { \ 355 const struct pipe_draw_info *info) 357 const unsigned prim = info->mode; 358 const unsigned start = info->start; 359 const unsigned count = info->count; 363 assert(info->primitive_restart); 427 struct pipe_draw_info info; local 429 util_draw_init_info(&info); 431 info.mode = mode; 432 info.start = start [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
timestamp_scaler_unittest.cc | 26 DecoderDatabase::DecoderInfo info; local 27 info.codec_type = kDecoderPCMu; // Does not use scaled timestamps. 30 .WillRepeatedly(Return(&info)); 46 DecoderDatabase::DecoderInfo info; local 47 info.codec_type = kDecoderPCMu; // Does not use scaled timestamps. 50 .WillRepeatedly(Return(&info)); 71 DecoderDatabase::DecoderInfo info; local 72 info.codec_type = kDecoderG722; // Uses a factor 2 scaling. 75 .WillRepeatedly(Return(&info)); 95 DecoderDatabase::DecoderInfo info; local 164 DecoderDatabase::DecoderInfo info; local 192 DecoderDatabase::DecoderInfo info; local 221 DecoderDatabase::DecoderInfo info; local 261 DecoderDatabase::DecoderInfo info; local 288 DecoderDatabase::DecoderInfo info; local [all...] |
/external/deqp/framework/qphelper/ |
qpCrashHandler.c | 41 /* Crash info write helper. */ 54 /* Shared crash info. */ 73 static void qpCrashInfo_init (qpCrashInfo* info) 75 info->type = QP_CRASHTYPE_LAST; 76 info->message = DE_NULL; 77 info->file = DE_NULL; 78 info->line = 0; 81 static void qpCrashInfo_set (qpCrashInfo* info, qpCrashType type, const char* message, const char* file, int line) 83 info->type = type; 84 info->message = message 442 const SignalInfo* info = getSignalInfo(sigNum); local [all...] |