Searched refs:loc (Results 151 - 175 of 860) sorted by relevance

1234567891011>>

/external/bison/src/
H A Dsymlist.c33 symbol_list_sym_new (symbol *sym, location loc) argument
39 res->location = res->sym_loc = loc;
64 symbol_list_type_new (uniqstr type_name, location loc) argument
70 res->location = res->sym_loc = loc;
83 symbol_list_default_tagged_new (location loc) argument
88 res->location = res->sym_loc = loc;
101 symbol_list_default_tagless_new (location loc) argument
106 res->location = res->sym_loc = loc;
206 symbol_list_n_type_name_get (symbol_list *l, location loc, int n) argument
211 complain_at (loc,
[all...]
H A Dmuscle-tab.c177 muscle_syncline_grow (char const *key, location loc) argument
180 obstack_printf (&muscle_obstack, "]b4_syncline(%d, ", loc.start.line);
182 quotearg_style (c_quoting_style, loc.start.file));
197 muscle_code_grow (const char *key, const char *val, location loc) argument
199 muscle_syncline_grow (key, loc);
288 muscle_location_grow (char const *key, location loc) argument
290 muscle_boundary_grow (key, loc.start);
292 muscle_boundary_grow (key, loc.end);
345 location loc; local
366 boundary_set_from_string (&loc
389 muscle_user_name_list_grow(char const *key, char const *user_name, location loc) argument
574 location loc; local
607 location loc = muscle_percent_define_get_loc (*variablep); local
[all...]
/external/libunwind/src/x86_64/
H A DGstep.c87 if (DWARF_IS_NULL_LOC (c->dwarf.loc[RBP]))
132 c->dwarf.loc[RIP] = DWARF_LOC (c->dwarf.cfa, 0);
135 else if (DWARF_IS_NULL_LOC (c->dwarf.loc[RBP]))
138 c->dwarf.loc[i] = DWARF_NULL_LOC;
144 ret = dwarf_get (&c->dwarf, c->dwarf.loc[RBP], &rbp);
148 DWARF_GET_LOC (c->dwarf.loc[RBP]));
167 (unsigned long) DWARF_GET_LOC (c->dwarf.loc[RBP]),
192 c->dwarf.loc[i] = DWARF_NULL_LOC;
194 c->dwarf.loc[RBP] = rbp_loc;
195 c->dwarf.loc[RS
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAtlas.cpp55 static inline void adjust_for_offset(SkIPoint16* loc, const SkIPoint16& offset) { argument
56 loc->fX += offset.fX;
57 loc->fY += offset.fY;
60 bool GrPlot::addSubImage(int width, int height, const void* image, SkIPoint16* loc) { argument
62 if (!fRects->addRect(width, height, loc)) {
80 dataPtr += fBytesPerPixel*plotWidth*loc->fY;
81 dataPtr += fBytesPerPixel*loc->fX;
89 fDirtyRect.join(loc->fX, loc->fY, loc
212 addToAtlas(ClientPlotUsage* usage, int width, int height, const void* image, SkIPoint16* loc) argument
[all...]
H A DGrRectanizer_pow2.cpp11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument
45 *loc = row->fLoc;
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_v3.c123 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc)
125 if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t) loc)
128 return sk_X509_EXTENSION_value(x,loc);
131 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc)
135 if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t) loc)
137 ret=sk_X509_EXTENSION_delete(x,loc);
142 X509_EXTENSION *ex, int loc)
163 if (loc >
[all...]
/external/chromium_org/third_party/skia/src/views/mac/
H A DSkNSView.mm269 NSPoint loc = [self convertPoint:p fromView:nil];
271 loc = [self convertPointToBacking:loc]; //y-up
272 loc.y = -loc.y;
274 fWind->handleClick((int) loc.x, (int) loc.y,
284 NSPoint loc = [self convertPoint:p fromView:nil];
286 loc = [self convertPointToBacking:loc]; //
[all...]
/external/libunwind/include/tdep-x86_64/
H A Dlibunwind_i.h141 dwarf_getfp (struct dwarf_cursor *c, dwarf_loc_t loc, unw_fpreg_t *val) argument
143 if (DWARF_IS_NULL_LOC (loc))
150 dwarf_putfp (struct dwarf_cursor *c, dwarf_loc_t loc, unw_fpreg_t val) argument
152 if (DWARF_IS_NULL_LOC (loc))
159 dwarf_get (struct dwarf_cursor *c, dwarf_loc_t loc, unw_word_t *val) argument
161 if (DWARF_IS_NULL_LOC (loc))
164 if (DWARF_IS_REG_LOC (loc))
165 return (*c->as->acc.access_reg) (c->as, DWARF_GET_LOC (loc), val,
168 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), val,
173 dwarf_put (struct dwarf_cursor *c, dwarf_loc_t loc, unw_word_ argument
[all...]
/external/openssl/crypto/stack/
H A Dstack.c142 int sk_insert(_STACK *st, void *data, int loc) argument
156 if ((loc >= (int)st->num) || (loc < 0))
165 for (i=st->num; i>=loc; i--)
169 memmove(&(st->data[loc+1]),
170 &(st->data[loc]),
171 sizeof(char *)*(st->num-loc));
173 st->data[loc]=data;
190 void *sk_delete(_STACK *st, int loc) argument
195 if(!st || (loc <
[all...]
/external/openssl/crypto/x509/
H A Dx509_v3.c125 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc)
127 if (x == NULL || sk_X509_EXTENSION_num(x) <= loc || loc < 0)
130 return sk_X509_EXTENSION_value(x,loc);
133 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc)
137 if (x == NULL || sk_X509_EXTENSION_num(x) <= loc || loc < 0)
139 ret=sk_X509_EXTENSION_delete(x,loc);
144 X509_EXTENSION *ex, int loc)
165 if (loc >
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_to_hir.cpp167 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
179 _mesa_glsl_error(loc, state,
191 _mesa_glsl_error(loc, state,
209 _mesa_glsl_error(loc, state,
252 _mesa_glsl_error(loc, state,
345 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
352 _mesa_glsl_error(loc, state, "type mismatch");
359 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
370 _mesa_glsl_error(loc, state,
391 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, bool multiply, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
358 unary_arithmetic_result_type(const struct glsl_type *type, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
388 bit_logic_result_type(const struct glsl_type *type_a, const struct glsl_type *type_b, ast_operators op, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
445 modulus_result_type(const struct glsl_type *type_a, const struct glsl_type *type_b, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
496 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
551 shift_result_type(const struct glsl_type *type_a, const struct glsl_type *type_b, ast_operators op, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
899 YYLTYPE loc = expr->get_location(); local
914 check_builtin_array_max_size(const char *name, unsigned size, YYLTYPE loc, struct _mesa_glsl_parse_state *state) argument
1033 YYLTYPE loc; local
1412 YYLTYPE loc = this->subexpressions[1]->get_location(); local
1837 process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size, struct _mesa_glsl_parse_state *state) argument
1857 YYLTYPE loc = array_size->get_location(); local
1908 YYLTYPE loc = this->get_location(); local
1917 apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual, ir_variable *var, struct _mesa_glsl_parse_state *state, YYLTYPE *loc, bool ubo_qualifiers_valid) argument
2244 YYLTYPE loc = decl->get_location(); local
2474 YYLTYPE loc = this->get_location(); local
2948 YYLTYPE loc = this->get_location(); local
2987 YYLTYPE loc = this->get_location(); local
3113 YYLTYPE loc = void_param->get_location(); local
3165 YYLTYPE loc = this->get_location(); local
3178 YYLTYPE loc = this->get_location(); local
3196 YYLTYPE loc = this->get_location(); local
3207 YYLTYPE loc = this->get_location(); local
3218 YYLTYPE loc = this->get_location(); local
3234 YYLTYPE loc = this->get_location(); local
3241 YYLTYPE loc = this->get_location(); local
3248 YYLTYPE loc = this->get_location(); local
3257 YYLTYPE loc = this->get_location(); local
3270 YYLTYPE loc = this->get_location(); local
3276 YYLTYPE loc = this->get_location(); local
3326 YYLTYPE loc = this->get_location(); local
3344 YYLTYPE loc = this->get_location(); local
3383 YYLTYPE loc = this->get_location(); local
3397 YYLTYPE loc = this->get_location(); local
3414 YYLTYPE loc = this->get_location(); local
3426 YYLTYPE loc = this->get_location(); local
3433 YYLTYPE loc = this->get_location(); local
3499 YYLTYPE loc = this->condition->get_location(); local
3543 YYLTYPE loc = this->test_expression->get_location(); local
3713 YYLTYPE loc = this->test_value->get_location(); local
3727 YYLTYPE loc = this->test_value->get_location(); local
3756 YYLTYPE loc = this->get_location(); local
3789 YYLTYPE loc = condition->get_location(); local
3965 YYLTYPE loc = this->get_location(); local
3977 YYLTYPE loc = decl->get_location(); local
3993 YYLTYPE loc = this->get_location(); local
4043 YYLTYPE loc = this->get_location(); local
4096 YYLTYPE loc = decl_list->get_location(); local
4118 YYLTYPE loc; local
[all...]
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp167 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
179 _mesa_glsl_error(loc, state,
191 _mesa_glsl_error(loc, state,
209 _mesa_glsl_error(loc, state,
252 _mesa_glsl_error(loc, state,
345 _mesa_glsl_error(loc, state, "size mismatch for matrix multiplication");
352 _mesa_glsl_error(loc, state, "type mismatch");
359 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
370 _mesa_glsl_error(loc, state,
391 struct _mesa_glsl_parse_state *state, YYLTYPE *loc)
165 arithmetic_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, bool multiply, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
358 unary_arithmetic_result_type(const struct glsl_type *type, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
388 bit_logic_result_type(const struct glsl_type *type_a, const struct glsl_type *type_b, ast_operators op, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
445 modulus_result_type(const struct glsl_type *type_a, const struct glsl_type *type_b, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
496 relational_result_type(ir_rvalue * &value_a, ir_rvalue * &value_b, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
551 shift_result_type(const struct glsl_type *type_a, const struct glsl_type *type_b, ast_operators op, struct _mesa_glsl_parse_state *state, YYLTYPE *loc) argument
899 YYLTYPE loc = expr->get_location(); local
914 check_builtin_array_max_size(const char *name, unsigned size, YYLTYPE loc, struct _mesa_glsl_parse_state *state) argument
1033 YYLTYPE loc; local
1412 YYLTYPE loc = this->subexpressions[1]->get_location(); local
1837 process_array_type(YYLTYPE *loc, const glsl_type *base, ast_node *array_size, struct _mesa_glsl_parse_state *state) argument
1857 YYLTYPE loc = array_size->get_location(); local
1908 YYLTYPE loc = this->get_location(); local
1917 apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual, ir_variable *var, struct _mesa_glsl_parse_state *state, YYLTYPE *loc, bool ubo_qualifiers_valid) argument
2244 YYLTYPE loc = decl->get_location(); local
2474 YYLTYPE loc = this->get_location(); local
2948 YYLTYPE loc = this->get_location(); local
2987 YYLTYPE loc = this->get_location(); local
3113 YYLTYPE loc = void_param->get_location(); local
3165 YYLTYPE loc = this->get_location(); local
3178 YYLTYPE loc = this->get_location(); local
3196 YYLTYPE loc = this->get_location(); local
3207 YYLTYPE loc = this->get_location(); local
3218 YYLTYPE loc = this->get_location(); local
3234 YYLTYPE loc = this->get_location(); local
3241 YYLTYPE loc = this->get_location(); local
3248 YYLTYPE loc = this->get_location(); local
3257 YYLTYPE loc = this->get_location(); local
3270 YYLTYPE loc = this->get_location(); local
3276 YYLTYPE loc = this->get_location(); local
3326 YYLTYPE loc = this->get_location(); local
3344 YYLTYPE loc = this->get_location(); local
3383 YYLTYPE loc = this->get_location(); local
3397 YYLTYPE loc = this->get_location(); local
3414 YYLTYPE loc = this->get_location(); local
3426 YYLTYPE loc = this->get_location(); local
3433 YYLTYPE loc = this->get_location(); local
3499 YYLTYPE loc = this->condition->get_location(); local
3543 YYLTYPE loc = this->test_expression->get_location(); local
3713 YYLTYPE loc = this->test_value->get_location(); local
3727 YYLTYPE loc = this->test_value->get_location(); local
3756 YYLTYPE loc = this->get_location(); local
3789 YYLTYPE loc = condition->get_location(); local
3965 YYLTYPE loc = this->get_location(); local
3977 YYLTYPE loc = decl->get_location(); local
3993 YYLTYPE loc = this->get_location(); local
4043 YYLTYPE loc = this->get_location(); local
4096 YYLTYPE loc = decl_list->get_location(); local
4118 YYLTYPE loc; local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dservlkf.cpp50 Locale loc; local
51 lkey.currentLocale(loc);
53 return handleCreate(loc, kind, service, status);
97 Locale loc; local
98 LocaleUtility::initLocaleFromName(id, loc);
99 return loc.getDisplayName(locale, result);
107 LocaleKeyFactory::handleCreate(const Locale& /* loc */,
/external/deqp/framework/delibs/decpp/
H A DdeStringUtil.cpp48 const locale& loc; member in struct:de::__anon19714::ToLower
49 ToLower (void) : loc(locale::classic()) {}
50 char operator() (char c) { return std::tolower(c, loc); }
55 const locale& loc; member in struct:de::__anon19714::ToUpper
56 ToUpper (void) : loc(locale::classic()) {}
57 char operator() (char c) { return std::toupper(c, loc); }
/external/icu/icu4c/source/common/
H A Dservlkf.cpp50 Locale loc; local
51 lkey.currentLocale(loc);
53 return handleCreate(loc, kind, service, status);
97 Locale loc; local
98 LocaleUtility::initLocaleFromName(id, loc);
99 return loc.getDisplayName(locale, result);
107 LocaleKeyFactory::handleCreate(const Locale& /* loc */,
/external/openssl/crypto/ocsp/
H A Docsp_ext.c96 X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc) argument
98 return(X509v3_get_ext(x->tbsRequest->requestExtensions,loc));
101 X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc) argument
103 return(X509v3_delete_ext(x->tbsRequest->requestExtensions,loc));
117 int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc) argument
119 return(X509v3_add_ext(&(x->tbsRequest->requestExtensions),ex,loc) != NULL);
144 X509_EXTENSION *OCSP_ONEREQ_get_ext(OCSP_ONEREQ *x, int loc) argument
146 return(X509v3_get_ext(x->singleRequestExtensions,loc));
149 X509_EXTENSION *OCSP_ONEREQ_delete_ext(OCSP_ONEREQ *x, int loc) argument
151 return(X509v3_delete_ext(x->singleRequestExtensions,loc));
165 OCSP_ONEREQ_add_ext(OCSP_ONEREQ *x, X509_EXTENSION *ex, int loc) argument
192 OCSP_BASICRESP_get_ext(OCSP_BASICRESP *x, int loc) argument
197 OCSP_BASICRESP_delete_ext(OCSP_BASICRESP *x, int loc) argument
213 OCSP_BASICRESP_add_ext(OCSP_BASICRESP *x, X509_EXTENSION *ex, int loc) argument
240 OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP *x, int loc) argument
245 OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP *x, int loc) argument
261 OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc) argument
[all...]
/external/svox/pico/src/com/svox/pico/
H A DEngineSettings.java59 Locale loc = new Locale(languageCountry[0], languageCountry[1]);
61 pref.setTitle(loc.getDisplayLanguage() + " (" + loc.getDisplayCountry() + ")");
70 Locale loc = new Locale(languageCountry[0], languageCountry[1]);
72 pref.setTitle(loc.getDisplayLanguage() + " (" + loc.getDisplayCountry() + ")");
/external/libunwind/src/ia64/
H A DGrbs.c45 ia64_strloc (ia64_loc_t loc) argument
49 if (IA64_IS_NULL_LOC (loc))
54 if (IA64_IS_MEMSTK_NAT (loc))
56 if (IA64_IS_UC_LOC (loc))
58 if (IA64_IS_FP_LOC (loc))
61 if (IA64_IS_REG_LOC (loc))
62 sprintf (buf + strlen (buf), "%s", unw_regname (IA64_GET_REG (loc)));
65 (unsigned long long) IA64_GET_ADDR (loc));
67 if (IA64_IS_FP_LOC (loc))
69 if (IA64_IS_UC_LOC (loc))
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass64/
H A Ddwarf64_leb128.asm150 .loc 1 65 0
155 .loc 1 66 0
159 .loc 1 67 0
162 .loc 1 66 0
164 .loc 1 67 0
166 .loc 1 68 0
169 .loc 1 67 0
171 .loc 1 68 0
173 .loc 1 69 0
176 .loc
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventMod.java76 public Location loc; field in class:EventMod
111 loc = new Location();
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDiagnosticsBase.cpp19 const SourceLocation &loc,
23 print(id, loc, text);
18 report(ID id, const SourceLocation &loc, const std::string &text) argument
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDiagnostics.h26 const pp::SourceLocation& loc,
35 const pp::SourceLocation& loc,
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc145 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) { argument
147 if (!g_ctx->SuppressionCount() || loc == 0 ||
148 loc->type != ReportLocationGlobal || !loc->suppressable)
154 if (g_ctx->Match(loc->name, stype, &s) ||
155 g_ctx->Match(loc->file, stype, &s) ||
156 g_ctx->Match(loc->module, stype, &s)) {
160 return loc->addr;
/external/libcxx/test/localization/locales/locale.global.templates/
H A Duse_facet.pass.cpp12 // template <class Facet> const Facet& use_facet(const locale& loc);
44 std::locale loc(std::locale(), new my_facet);
45 const my_facet& f = std::use_facet<my_facet>(loc);
/external/openssl/crypto/cms/
H A Dcms_att.c80 X509_ATTRIBUTE *CMS_signed_get_attr(const CMS_SignerInfo *si, int loc) argument
82 return X509at_get_attr(si->signedAttrs, loc);
85 X509_ATTRIBUTE *CMS_signed_delete_attr(CMS_SignerInfo *si, int loc) argument
87 return X509at_delete_attr(si->signedAttrs, loc);
146 X509_ATTRIBUTE *CMS_unsigned_get_attr(const CMS_SignerInfo *si, int loc) argument
148 return X509at_get_attr(si->unsignedAttrs, loc);
151 X509_ATTRIBUTE *CMS_unsigned_delete_attr(CMS_SignerInfo *si, int loc) argument
153 return X509at_delete_attr(si->unsignedAttrs, loc);

Completed in 1212 milliseconds

1234567891011>>