Searched refs:info (Results 126 - 150 of 3349) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DNoViableAltException.cs92 protected NoViableAltException(SerializationInfo info, StreamingContext context) argument
93 : base(info, context)
95 if (info == null)
96 throw new ArgumentNullException("info");
98 this._grammarDecisionDescription = info.GetString("GrammarDecisionDescription");
99 this._decisionNumber = info.GetInt32("DecisionNumber");
100 this._stateNumber = info.GetInt32("StateNumber");
127 public override void GetObjectData(SerializationInfo info, StreamingContext context) argument
129 if (info == null)
130 throw new ArgumentNullException("info");
[all...]
/external/elfutils/src/libdw/
H A Ddwarf_filesrc.c45 *mtime = file->info[idx].mtime;
48 *length = file->info[idx].length;
50 return file->info[idx].name;
/external/ltrace/
H A Dtype.h60 struct arg_type_info *info; member in struct:arg_type_info::__anon11457::__anon11459
69 /* Return a type info for simple type TYPE (which shall not be array,
78 void type_init_struct(struct arg_type_info *info);
82 int type_struct_add(struct arg_type_info *info,
86 struct arg_type_info *type_struct_get(struct arg_type_info *info, size_t idx);
89 size_t type_struct_size(struct arg_type_info *info);
94 size_t type_aggregate_size(struct arg_type_info *info);
100 void type_init_array(struct arg_type_info *info,
107 void type_init_pointer(struct arg_type_info *info,
112 void type_destroy(struct arg_type_info *info);
[all...]
/external/skia/debugger/QT/
H A DSkDrawCommandGeometryWidget.cpp28 SkImageInfo info = SkImageInfo::MakeN32Premul(dim, dim); local
29 fSurface.reset(SkSurface::NewRaster(info));
44 SkImageInfo info; local
46 if (const void* pixels = fSurface->peekPixels(&info, &rowBytes)) {
47 SkASSERT(info.width() > 0);
48 SkASSERT(info.height() > 0);
52 float ratio = this->width() / info.width();
53 resultRect = QRectF(0, 0, this->width(), ratio * info.height());
55 float ratio = this->height() / info.height();
56 resultRect = QRectF(0, 0, ratio * info
[all...]
/external/cblas/src/
H A Dxerbla.c23 F77_INT *info=vinfo; local
26 int *info=vinfo; local
40 cblas_xerbla(*info+1,rout,"");
45 *info, srname);
/external/compiler-rt/test/builtins/timing/
H A Dtiming.h12 mach_timebase_info_data_t info; local
13 kern_return_t err = mach_timebase_info( &info );
23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
/external/fio/os/
H A Dos-aix.h31 struct devinfo info; local
33 if (!ioctl(f->fd, IOCINFO, &info)) {
34 *bytes = (unsigned long long)info.un.scdk.numblks *
35 info.un.scdk.blksize;
/external/iptables/extensions/
H A Dlibxt_connlabel.c34 struct xt_connlabel_mtinfo *info = cb->data; local
44 info->bit = tmp;
46 info->options |= XT_CONNLABEL_OP_INVERT;
49 info->options |= XT_CONNLABEL_OP_SET;
64 connlabel_mt_print_op(const struct xt_connlabel_mtinfo *info, const char *prefix) argument
66 if (info->options & XT_CONNLABEL_OP_SET)
73 const struct xt_connlabel_mtinfo *info = (const void *)match->data; local
74 const char *name = connlabel_get_name(info->bit);
77 if (info->options & XT_CONNLABEL_OP_INVERT)
80 printf(" %u", info
90 const struct xt_connlabel_mtinfo *info = (const void *)match->data; local
[all...]
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...]
/external/libunwind/src/ia64/
H A Ddyn_info_list.S13 .info: data8 (1<<48) | 1 /* v1, length==1 (8-byte word) */
20 data8 0, 0, @segrel(.info)
/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/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/v8/src/
H A Drewriter.h21 static bool Rewrite(CompilationInfo* info);
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/valgrind/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/vboot_reference/utility/
H A Dimage_types.c36 ImageInfo *info) {
38 if (info)
39 info->format = FORMAT_INVALID;
52 if (info) {
53 info->format = FORMAT_BMP;
54 info->width = bhdr->PixelWidth;
55 info->height = bhdr->PixelHeight;
63 if (info)
64 info->format = FORMAT_FONT;
35 identify_image_type(const void *buf, uint32_t bufsize, ImageInfo *info) argument
/external/vboot_reference/utility/include/
H A Dimage_types.h16 /* Identify the data. Fill in known values if info is not NULL */
18 ImageInfo *info);
/external/skia/src/core/
H A DSkPicture.cpp155 SkPathEffect::DashInfo info; local
156 SkPathEffect::DashType dashType = effect->asADash(&info);
158 SkPathEffect::kDash_DashType == dashType && 2 == info.fCount) {
283 bool SkPicture::IsValidPictInfo(const SkPictInfo& info) { argument
284 if (0 != memcmp(info.fMagic, kMagic, sizeof(kMagic))) {
288 if (info.fVersion < MIN_PICTURE_VERSION ||
289 info.fVersion > CURRENT_PICTURE_VERSION) {
302 SkPictInfo info; local
303 SkASSERT(sizeof(kMagic) == sizeof(info.fMagic));
305 if (!stream->read(&info
329 SkPictInfo info; local
350 Forwardport(const SkPictInfo& info, const SkPictureData* data) argument
363 SkPictInfo info; local
372 SkPictInfo info; local
399 Backport(const SkRecord& src, const SkPictInfo& info, SkPicture const* const drawablePicts[], int drawableCount) argument
409 SkPictInfo info; local
424 SkPictInfo info; local
[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/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_core_dumper.cc92 bool LinuxCoreDumper::GetThreadInfoByIndex(size_t index, ThreadInfo* info) { argument
96 *info = thread_infos_[index];
99 memcpy(&stack_pointer, &info->regs.esp, sizeof(info->regs.esp));
101 memcpy(&stack_pointer, &info->regs.rsp, sizeof(info->regs.rsp));
103 memcpy(&stack_pointer, &info->regs.ARM_sp, sizeof(info->regs.ARM_sp));
105 memcpy(&stack_pointer, &info->regs.sp, sizeof(info
189 ThreadInfo info; local
[all...]
/external/selinux/libsemanage/src/
H A Dseusers_file.c45 parse_info_t * info, semanage_seuser_t * seuser)
50 if (parse_skip_space(handle, info) < 0)
52 if (!info->ptr)
56 if (parse_fetch_string(handle, info, &str, ':') < 0)
63 if (parse_skip_space(handle, info) < 0)
65 if (parse_assert_ch(handle, info, ':') < 0)
67 if (parse_skip_space(handle, info) < 0)
71 if (parse_fetch_string(handle, info, &str, ':') < 0)
78 if (parse_skip_space(handle, info) < 0)
80 if (parse_optional_ch(info, '
44 seuser_parse(semanage_handle_t * handle, parse_info_t * info, semanage_seuser_t * seuser) argument
[all...]

Completed in 851 milliseconds

1234567891011>>