HomeSort by relevance Sort by last modified time
    Searched refs:decl (Results 76 - 100 of 373) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionCall.java 115 ElemExtensionDecl decl = null; local
127 decl = (ElemExtensionDecl) child;
129 String prefix = decl.getPrefix();
134 return decl;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_draw.h 55 const SVGA3dVertexDecl *decl,
svga_tgsi_decl_sm30.c 517 const struct tgsi_full_declaration *decl )
519 unsigned first = decl->Range.First;
520 unsigned last = decl->Range.Last;
526 switch (decl->Declaration.File) {
529 ok = ps30_sampler( emit, decl->Semantic, idx );
534 ok = vs30_input( emit, decl->Semantic, idx );
536 ok = ps30_input( emit, decl->Semantic, idx );
541 ok = vs30_output( emit, decl->Semantic, idx );
543 ok = ps30_output( emit, decl->Semantic, idx );
  /external/mesa3d/src/gallium/drivers/svga/
svga_draw.h 55 const SVGA3dVertexDecl *decl,
svga_tgsi_decl_sm30.c 517 const struct tgsi_full_declaration *decl )
519 unsigned first = decl->Range.First;
520 unsigned last = decl->Range.Last;
526 switch (decl->Declaration.File) {
529 ok = ps30_sampler( emit, decl->Semantic, idx );
534 ok = vs30_input( emit, decl->Semantic, idx );
536 ok = ps30_input( emit, decl->Semantic, idx );
541 ok = vs30_output( emit, decl->Semantic, idx );
543 ok = ps30_output( emit, decl->Semantic, idx );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_llvm.h 81 const struct tgsi_full_declaration *decl);
85 const struct tgsi_full_declaration *decl);
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_llvm.h 81 const struct tgsi_full_declaration *decl);
85 const struct tgsi_full_declaration *decl);
  /external/zlib/src/
zlib2ansi 24 my $decl = qr{ $sp (?: \w+ $sp )+ $d1 }xo ;
25 my $dList = qr{ $sp $decl (?: $sp , $d1 )* $sp ; $sp }xo ;
  /frameworks/av/media/common_time/
cc_helper.cpp 95 #define CCHELPER_METHOD(decl, call) \
96 status_t CCHelper::decl { \
  /external/libsepol/src/
link.c 114 * to the object class. This means that the requirements for the decl are the union of the permissions
271 * not met, but we cannot because the decl might be optional (in which
1746 avrule_decl_t *decl, *last_decl = NULL; local
2179 avrule_decl_t *decl; local
2261 avrule_decl_t *decl; local
2307 avrule_decl_t *decl; local
2340 avrule_decl_t *decl; local
2370 avrule_decl_t *decl = cur->branch_list; local
2481 avrule_decl_t *decl; local
    [all...]
  /external/libsepol/tests/
test-common.c 185 role_datum_t *test_role_type_set(policydb_t * p, char *id, avrule_decl_t * decl, char **types, unsigned int len, unsigned int flags)
191 if (decl)
192 role = hashtab_search(decl->p_roles.table, id);
226 void test_attr_types(policydb_t * p, char *id, avrule_decl_t * decl, char **types, int len)
233 if (decl)
234 attr = hashtab_search(decl->p_types.table, id);
239 printf("could not find attr %s in decl %d\n", id, decl->decl_id);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen7_sol_state.c 131 uint16_t decl = 0; local
146 decl |= buffer << SO_DECL_OUTPUT_BUFFER_SLOT_SHIFT;
147 decl |= vue_map->vert_result_to_slot[vert_result] <<
149 decl |= component_mask << SO_DECL_COMPONENT_MASK_SHIFT;
158 so_decl[i] = decl;
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_sol_state.c 131 uint16_t decl = 0; local
146 decl |= buffer << SO_DECL_OUTPUT_BUFFER_SLOT_SHIFT;
147 decl |= vue_map->vert_result_to_slot[vert_result] <<
149 decl |= component_mask << SO_DECL_COMPONENT_MASK_SHIFT;
158 so_decl[i] = decl;
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 272 Method* decl = new Method; local
273 decl->comment = gather_comments(method->comments_token->extra);
274 decl->modifiers = PUBLIC;
275 decl->returnType = NAMES.Search(method->type.type.data);
276 decl->returnTypeDimension = method->type.dimension;
277 decl->name = method->name.data;
281 decl->parameters.push_back(new Variable(
287 decl->exceptions.push_back(REMOTE_EXCEPTION_TYPE);
289 interface->elements.push_back(decl);
346 _result = new Variable(decl->returnType, "_result"
    [all...]
  /external/bison/src/
parse-gram.y 58 * \param decl the formal argument
61 static void add_param (char const *type, char *decl, location loc);
716 declaration DECL and location LOC. */
719 add_param (char const *type, char *decl, location loc)
730 for (p = decl; p[1]; p++)
731 if ((p == decl
742 ++decl;
743 while (c_isspace ((unsigned char) *decl))
744 ++decl;
751 muscle_pair_list_grow (type, decl, name)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 109 #lexer.unget_token() # unget start of decl
580 def __init__(self,name,decl=None):
581 Node.__init__(self,name)#,decl)
583 self.decl=decl
608 decl = Declarator()
609 decl.parse(lexer,symbols)
610 if len(decl)==0:
614 self.append(decl)
615 ident = decl.iden
    [all...]
  /external/v8/src/
full-codegen.cc 55 VariableDeclaration* decl) {
59 FunctionDeclaration* decl) {
63 ModuleDeclaration* decl) {
67 ImportDeclaration* decl) {
71 ExportDeclaration* decl) {
587 Declaration* decl = declarations->at(i); local
588 Variable* var = decl->proxy()->var();
592 FunctionDeclaration* fun_decl = decl->AsFunctionDeclaration();
621 void FullCodeGenerator::VisitVariableDeclaration(VariableDeclaration* decl) {
622 EmitDeclaration(decl->proxy(), decl->mode(), NULL)
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cplus-dem.c 1169 string decl; local
3540 string decl; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 109 - (void)decl;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 52 public void decl(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
  /external/checkpolicy/test/
dismod.c 590 int display_avdecl(avrule_decl_t * decl, int field,
593 fprintf(out_fp, "decl %u:%s\n", decl->decl_id,
594 (decl->enabled ? " [enabled]" : ""));
597 cond_list_t *cond = decl->cond_list;
623 avrule_t *avrule = decl->avrules;
638 display_role_trans(decl->role_tr_rules, policy, out_fp);
642 display_role_allow(decl->role_allow_rules, policy,
648 (&decl->required, policy, out_fp)) {
655 (&decl->declared, policy, out_fp))
677 avrule_decl_t *decl = block->branch_list; local
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 52 const clang::NamedDecl* decl,
54 if (!isa<clang::CXXConstructorDecl>(decl) &&
55 !isa<clang::CXXDestructorDecl>(decl)) {
58 ctx->mangleName(decl, out);
67 static bool InV8Namespace(const clang::NamedDecl* decl) {
68 return decl->getQualifiedNameAsString().compare(0, 4, "v8::") == 0;
225 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) {
226 callees_printer_->AnalyzeFunction(decl);
256 const clang::FunctionDecl* decl) {
259 if (!InV8Namespace(decl)) return false
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 52 const clang::NamedDecl* decl,
54 if (!isa<clang::CXXConstructorDecl>(decl) &&
55 !isa<clang::CXXDestructorDecl>(decl)) {
58 ctx->mangleName(decl, out);
67 static bool InV8Namespace(const clang::NamedDecl* decl) {
68 return decl->getQualifiedNameAsString().compare(0, 4, "v8::") == 0;
225 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) {
226 callees_printer_->AnalyzeFunction(decl);
256 const clang::FunctionDecl* decl) {
259 if (!InV8Namespace(decl)) return false
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_shader.c 201 const struct tgsi_full_declaration *decl)
257 const struct tgsi_full_declaration *decl)
282 switch (decl->Interp.Interpolate) {
293 if (decl->Interp.Centroid)
306 if (decl->Interp.Centroid)
312 if (decl->Interp.Centroid)
340 const struct tgsi_full_declaration *decl)
345 declare_input_vs(si_shader_ctx, input_index, decl);
347 declare_input_fs(si_shader_ctx, input_index, decl);
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.c 201 const struct tgsi_full_declaration *decl)
257 const struct tgsi_full_declaration *decl)
282 switch (decl->Interp.Interpolate) {
293 if (decl->Interp.Centroid)
306 if (decl->Interp.Centroid)
312 if (decl->Interp.Centroid)
340 const struct tgsi_full_declaration *decl)
345 declare_input_vs(si_shader_ctx, input_index, decl);
347 declare_input_fs(si_shader_ctx, input_index, decl);

Completed in 1778 milliseconds

1 2 34 5 6 7 8 91011>>