/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
V8HTMLCanvasElementCustom.cpp | 50 void V8HTMLCanvasElement::getContextMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) 52 v8::Handle<v8::Object> holder = info.Holder(); 53 v8::Isolate* isolate = info.GetIsolate(); 55 TOSTRING_VOID(V8StringResource<>, contextIdResource, info[0]); 60 if (info.Length() > 1 && info[1]->IsObject()) { 61 v8::Handle<v8::Object> jsAttributes = info[1]->ToObject(); 87 if (info.Length() > 1 && info[1]->IsObject()) { 88 v8::Handle<v8::Object> jsAttributes = info[1]->ToObject() [all...] |
V8InspectorFrontendHostCustom.cpp | 48 void V8InspectorFrontendHost::platformMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) 51 v8SetReturnValue(info, v8AtomicString(info.GetIsolate(), "mac")); 53 v8SetReturnValue(info, v8AtomicString(info.GetIsolate(), "windows")); 55 v8SetReturnValue(info, v8AtomicString(info.GetIsolate(), "linux")); 106 void V8InspectorFrontendHost::showContextMenuMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) 108 if (info.Length() < 2) 111 v8::Local<v8::Object> eventWrapper = v8::Local<v8::Object>::Cast(info[0]) [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkDecodingImageGenerator.cpp | 35 const SkImageInfo& info, 41 virtual bool onGetInfo(SkImageInfo* info) SK_OVERRIDE { 42 *info = fInfo; 45 virtual bool onGetPixels(const SkImageInfo& info, 59 TargetAllocator(const SkImageInfo& info, 62 : fInfo(info) 70 if (NULL == fTarget || !equal_modulo_alpha(fInfo, bm->info())) { 114 const SkImageInfo& info, 119 , fInfo(info) 149 bool DecodingImageGenerator::onGetPixels(const SkImageInfo& info, 231 SkImageInfo info = bitmap.info(); local [all...] |
/external/iptables/extensions/ |
libxt_connlimit.c | 51 struct xt_connlimit_info *info = (void *)match->data; local 54 memset(info->v6_mask, 0xFF, sizeof(info->v6_mask)); 59 struct xt_connlimit_info *info = cb->data; local 66 info->flags |= XT_CONNLIMIT_INVERT; 70 info->flags |= XT_CONNLIMIT_INVERT; 77 info->flags &= ~XT_CONNLIMIT_DADDR; 84 info->flags |= XT_CONNLIMIT_DADDR; 131 const struct xt_connlimit_info *info = (const void *)match->data; local 134 (info->flags & XT_CONNLIMIT_DADDR) ? "dst" : "src" 142 const struct xt_connlimit_info *info = (const void *)match->data; local 152 const struct xt_connlimit_info *info = (const void *)match->data; local 170 const struct xt_connlimit_info *info = (const void *)match->data; local [all...] |
libxt_string.c | 80 parse_string(const char *s, struct xt_string_info *info) 84 strncpy(info->pattern, s, XT_STRING_MAX_PATTERN_SIZE); 85 info->patlen = strnlen(s, XT_STRING_MAX_PATTERN_SIZE); 92 parse_hex_string(const char *s, struct xt_string_info *info) 131 info->pattern[sindex] = s[i+1]; 153 info->pattern[sindex] = (char) schar; 159 info->pattern[sindex] = s[i]; 166 info->patlen = sindex; 255 const struct xt_string_info *info = local 258 int invert = (revision == 0 ? info->u.v0.invert 279 const struct xt_string_info *info = local [all...] |
libxt_conntrack.c | 229 conntrack_ps_state(struct xt_conntrack_mtinfo3 *info, const char *state, 233 info->state_mask |= XT_CONNTRACK_STATE_INVALID; 235 info->state_mask |= XT_CONNTRACK_STATE_BIT(IP_CT_NEW); 237 info->state_mask |= XT_CONNTRACK_STATE_BIT(IP_CT_ESTABLISHED); 239 info->state_mask |= XT_CONNTRACK_STATE_BIT(IP_CT_RELATED); 241 info->state_mask |= XT_CONNTRACK_STATE_UNTRACKED; 243 info->state_mask |= XT_CONNTRACK_STATE_SNAT; 245 info->state_mask |= XT_CONNTRACK_STATE_DNAT; 252 conntrack_ps_states(struct xt_conntrack_mtinfo3 *info, const char *arg) 257 if (comma == arg || !conntrack_ps_state(info, arg, comma - arg) 403 struct xt_conntrack_mtinfo3 *info = cb->data; local 517 struct xt_conntrack_mtinfo1 *info = cb->data; local 543 struct xt_conntrack_mtinfo2 *info = cb->data; local 910 struct xt_conntrack_mtinfo1 *info = (void *)match->data; local 926 const struct xt_conntrack_mtinfo1 *info = (void *)match->data; local 937 const struct xt_conntrack_mtinfo1 *info = (void *)match->data; local 1004 const struct xt_conntrack_mtinfo1 *info = (void *)match->data; local 1014 const struct xt_conntrack_mtinfo1 *info = (void *)match->data; local [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkBuildCondensedInfo.cpp | 14 #error "SK_USE_CONDENSED_INFO must be zero to build condensed info" 17 #error "SK_BUILD_FOR_WIN32 must be defined to build condensed info" 29 static void AddInfo(SkDisplayTypes type, const SkMemberInfo* info, int infoCount) { 31 gInfos[type] = info; 36 SkASSERT(info[inner].fCount < 256); 37 int offset = (int) info[inner].fOffset; 40 if (info[inner].fType == SkType_BaseClassInfo) { 41 const SkMemberInfo* innerInfo = (const SkMemberInfo*) info[inner].fName; 44 *gUnknownsCounts.append() = info[inner].fCount; 47 if (info[inner].fType != SkType_BaseClassInfo && info[inner].fName [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/ |
win64-except.c | 96 coff_unwind_info *info = yasm_xmalloc(sizeof(coff_unwind_info)); local 97 info->proc = NULL; 98 info->prolog = NULL; 99 info->ehandler = NULL; 100 info->framereg = 0; 102 yasm_value_initialize(&info->frameoff, NULL, 8); 103 SLIST_INIT(&info->codes); 104 yasm_value_initialize(&info->prolog_size, NULL, 8); 105 yasm_value_initialize(&info->codes_count, NULL, 8); 106 return info; 208 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local 225 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local 257 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local 286 coff_unwind_info *info = (coff_unwind_info *)bc->contents; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
simple_encoder.c | 157 VpxVideoInfo info = {0}; local 189 info.codec_fourcc = encoder->fourcc; 190 info.frame_width = strtol(width_arg, NULL, 0); 191 info.frame_height = strtol(height_arg, NULL, 0); 192 info.time_base.numerator = 1; 193 info.time_base.denominator = fps; 195 if (info.frame_width <= 0 || 196 info.frame_height <= 0 || 197 (info.frame_width % 2) != 0 || 198 (info.frame_height % 2) != 0) [all...] |
vp8cx_set_ref.c | 106 VpxVideoInfo info = {0}; local 127 info.codec_fourcc = encoder->fourcc; 128 info.frame_width = strtol(argv[1], NULL, 0); 129 info.frame_height = strtol(argv[2], NULL, 0); 130 info.time_base.numerator = 1; 131 info.time_base.denominator = fps; 133 if (info.frame_width <= 0 || 134 info.frame_height <= 0 || 135 (info.frame_width % 2) != 0 || 136 (info.frame_height % 2) != 0) [all...] |
vp9_lossless_encoder.c | 69 VpxVideoInfo info = {0}; local 83 info.codec_fourcc = encoder->fourcc; 84 info.frame_width = strtol(argv[1], NULL, 0); 85 info.frame_height = strtol(argv[2], NULL, 0); 86 info.time_base.numerator = 1; 87 info.time_base.denominator = fps; 89 if (info.frame_width <= 0 || 90 info.frame_height <= 0 || 91 (info.frame_width % 2) != 0 || 92 (info.frame_height % 2) != 0) [all...] |
/external/deqp/framework/opengl/ |
gluProgramInterfaceQuery.cpp | 74 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info) 76 info.index = index; 77 info.bufferBinding = getProgramResourceUint(gl, program, programInterface, index, GL_BUFFER_BINDING); 78 info.dataSize = getProgramResourceUint(gl, program, programInterface, index, GL_BUFFER_DATA_SIZE); 80 getProgramInterfaceActiveVariables(gl, program, programInterface, index, info.activeVariables); 83 getProgramResourceName(gl, program, programInterface, index, info.name); 86 void getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info) 89 info.index = index; 90 info.blockIndex = getProgramResourceUint(gl, program, programInterface, index, GL_BLOCK_INDEX); 91 info.type = getProgramResourceUint(gl, program, programInterface, index, GL_TYPE) [all...] |
/external/jpeg/ |
jmemname.c | 204 read_backing_store (j_common_ptr cinfo, backing_store_ptr info, 208 if (fseek(info->temp_file, file_offset, SEEK_SET)) 210 if (JFREAD(info->temp_file, buffer_address, byte_count) 217 write_backing_store (j_common_ptr cinfo, backing_store_ptr info, 221 if (fseek(info->temp_file, file_offset, SEEK_SET)) 223 if (JFWRITE(info->temp_file, buffer_address, byte_count) 230 close_backing_store (j_common_ptr cinfo, backing_store_ptr info) 232 fclose(info->temp_file); /* close the file */ 233 unlink(info->temp_name); /* delete the file */ 238 TRACEMSS(cinfo, 1, JTRC_TFILE_CLOSE, info->temp_name) [all...] |
jmem-android.c | 99 read_backing_store (j_common_ptr cinfo, backing_store_ptr info, 103 if (fseek(info->temp_file, file_offset, SEEK_SET)) 105 if (JFREAD(info->temp_file, buffer_address, byte_count) 112 write_backing_store (j_common_ptr cinfo, backing_store_ptr info, 116 if (fseek(info->temp_file, file_offset, SEEK_SET)) 118 if (JFWRITE(info->temp_file, buffer_address, byte_count) 125 close_backing_store (j_common_ptr cinfo, backing_store_ptr info) 127 fclose(info->temp_file); 155 * behind the scenes. We don't have to use info->temp_name[] at all; 160 jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info, [all...] |
/external/libvpx/libvpx/examples/ |
simple_encoder.c | 156 VpxVideoInfo info = {0}; local 188 info.codec_fourcc = encoder->fourcc; 189 info.frame_width = strtol(width_arg, NULL, 0); 190 info.frame_height = strtol(height_arg, NULL, 0); 191 info.time_base.numerator = 1; 192 info.time_base.denominator = fps; 194 if (info.frame_width <= 0 || 195 info.frame_height <= 0 || 196 (info.frame_width % 2) != 0 || 197 (info.frame_height % 2) != 0) [all...] |
vp8cx_set_ref.c | 102 VpxVideoInfo info = {0}; local 123 info.codec_fourcc = encoder->fourcc; 124 info.frame_width = strtol(argv[1], NULL, 0); 125 info.frame_height = strtol(argv[2], NULL, 0); 126 info.time_base.numerator = 1; 127 info.time_base.denominator = fps; 129 if (info.frame_width <= 0 || 130 info.frame_height <= 0 || 131 (info.frame_width % 2) != 0 || 132 (info.frame_height % 2) != 0) [all...] |
/external/chromium_org/third_party/icu/source/io/ |
uprntf_p.c | 79 * @param info A pointer to a <TT>u_printf_spec_info</TT> struct containing 89 const u_printf_spec_info *info, 93 ufmt_type_info info; member in struct:u_printf_info 123 const u_printf_spec_info *info, 128 if(info->fShowSign) { 134 if (info->fSpace) { 162 const u_printf_spec_info *info, 167 if(info->fShowSign) { 182 const u_printf_spec_info *info, 196 const u_printf_spec_info *info, 1220 u_printf_spec_info *info = &(spec.fInfo); local [all...] |
/external/icu/icu4c/source/io/ |
uprntf_p.c | 79 * @param info A pointer to a <TT>u_printf_spec_info</TT> struct containing 89 const u_printf_spec_info *info, 93 ufmt_type_info info; member in struct:u_printf_info 123 const u_printf_spec_info *info, 128 if(info->fShowSign) { 134 if (info->fSpace) { 162 const u_printf_spec_info *info, 167 if(info->fShowSign) { 182 const u_printf_spec_info *info, 196 const u_printf_spec_info *info, 1220 u_printf_spec_info *info = &(spec.fInfo); local [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkImageGenerator.cpp | 11 bool SkImageGenerator::getInfo(SkImageInfo* info) { 13 if (NULL == info) { 14 info = &dummy; 16 return this->onGetInfo(info); 19 bool SkImageGenerator::getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, 21 if (kUnknown_SkColorType == info.colorType()) { 27 if (rowBytes < info.minRowBytes()) { 31 if (kIndex_8_SkColorType == info.colorType()) { 43 bool success = this->onGetPixels(info, pixels, rowBytes, ctable, ctableCount); 51 bool SkImageGenerator::getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/ |
bin-objfmt.c | 204 /*@null@*/ bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 206 assert(info != NULL); 217 yasm_errwarn_propagate(info->errwarns, yasm_symrec_get_decl_line(sym)); 221 yasm_errwarn_propagate(info->errwarns, yasm_symrec_get_decl_line(sym)); 225 yasm_errwarn_propagate(info->errwarns, yasm_symrec_get_decl_line(sym)); 233 bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 238 assert(info != NULL); 259 yasm_errwarn_propagate(info->errwarns, 0); 270 yasm_errwarn_propagate(info->errwarns, bsd->start->line); 283 yasm_errwarn_propagate(info->errwarns, bsd->vstart->line) 301 bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 549 map_output_info *info = (map_output_info *)d; local 650 map_output_info *info = (map_output_info *)d; local 668 map_output_info *info = (map_output_info *)d; local 901 \/*@null@*\/ bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 977 \/*@null@*\/ bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 1023 \/*@null@*\/ bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 1054 \/*@null@*\/ bin_objfmt_output_info *info = (bin_objfmt_output_info *)d; local 1110 bin_objfmt_output_info info; local [all...] |
/external/e2fsprogs/ext2ed/ |
dir_com.c | 82 struct struct_file_info search_dir_entries (int (*action) (struct struct_file_info *info),int *status) 100 struct struct_file_info info; /* Temporary variables used to */ local 104 info=first_file_info; /* Start from the first entry - Read it */ 105 low_read (info.buffer,file_system_info.block_size,info.global_block_offset); 106 dir_entry_ptr=(struct ext2_dir_entry_2 *) (info.buffer+info.dir_entry_offset); 108 while (info.file_offset < info.file_length) { /* While we haven't reached the end */ 110 *status=return_code=action (&info); /* Call the client function to test * 220 struct struct_file_info info; local 346 struct struct_file_info info; local [all...] |
/external/eigen/blas/ |
level2_cplx_impl.h | 43 int info = 0; local 44 if(UPLO(*uplo)==INVALID) info = 1; 45 else if(*n<0) info = 2; 46 else if(*lda<std::max(1,*n)) info = 5; 47 else if(*incx==0) info = 7; 48 else if(*incy==0) info = 10; 49 if(info) 50 return xerbla_(SCALAR_SUFFIX_UP"HEMV ",&info,6); 132 int info = 0; local 133 if(UPLO(*uplo)==INVALID) info = 1 184 int info = 0; local 238 int info = 0; local 293 int info = 0; local 336 int info = 0; local 373 int info = 0; local [all...] |
/external/chromium_org/chrome/browser/accessibility/ |
accessibility_extension_api.cc | 39 const AccessibilityEventInfo* info) { 41 info->SerializeToDict(dict); 81 const AccessibilityWindowInfo* info) { 83 control_event_callback_.Run(event, info); 86 OnWindowOpened(info); 91 const AccessibilityMenuInfo* info) { 95 OnMenuOpened(info); 99 OnMenuClosed(info); 102 OnControlFocused(info); 105 OnControlHover(info); [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
V8TestInterfaceConstructor4.cpp | 36 static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info) 40 testInterface4Arg = V8TestInterfaceConstructor4::toImplWithTypeCheck(info.GetIsolate(), info[0]); 43 v8::Handle<v8::Object> wrapper = info.Holder(); 44 impl->associateWithWrapper(&V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate()); 45 v8SetReturnValue(info, wrapper); 48 static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) 50 ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInterfaceConstructor4", info.Holder(), info.GetIsolate()); 53 TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(scalarValueStringArg, toScalarValueString(info[0], exceptionState), exceptionState) [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-shape-complex-myanmar.cc | 153 is_one_of (const hb_glyph_info_t &info, unsigned int flags) 156 if (_hb_glyph_info_ligated (&info)) return false; 157 return !!(FLAG (info.myanmar_category()) & flags); 161 is_consonant (const hb_glyph_info_t &info) 163 return is_one_of (info, CONSONANT_FLAGS); 168 set_myanmar_properties (hb_glyph_info_t &info) 170 hb_codepoint_t u = info.codepoint; 262 info.myanmar_category() = (myanmar_category_t) cat; 263 info.myanmar_position() = pos; 280 hb_glyph_info_t *info = buffer->info local 312 hb_glyph_info_t *info = buffer->info; local 455 hb_glyph_info_t *info = buffer->info; local 487 hb_glyph_info_t info = dottedcircle; local 508 hb_glyph_info_t *info = buffer->info; local 527 hb_glyph_info_t *info = buffer->info; local [all...] |