HomeSort by relevance Sort by last modified time
    Searched defs:structure (Results 26 - 50 of 75) sorted by null

12 3

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
IPage.java 11 package org.eclipse.wb.internal.core.editor.structure;
21 * @coverage core.editor.structure
PageSiteComposite.java 11 package org.eclipse.wb.internal.core.editor.structure;
28 * @coverage core.editor.structure
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 17 package com.google.clearsilver.jsilver.functions.structure;
  /external/chromium_org/third_party/angle/src/compiler/translator/
UtilsHLSL.cpp 65 TString DecorateField(const TString &string, const TStructure &structure)
67 if (structure.name().compare(0, 3, "gl_") != 0)
92 const TStructure* structure = type.getStruct(); local
93 if (structure)
95 const TString& typeName = structure->name();
98 return StructNameString(*structure);
100 else // Nameless structure, define in place
102 return StructureHLSL::defineNameless(*structure);
171 TString StructNameString(const TStructure &structure)
173 if (structure.name().empty()
    [all...]
UniformHLSL.cpp 39 TStructure *structure = fieldType.getStruct(); local
47 else if (structure)
50 return QualifiedStructNameString(*structure, matrixPacking == EmpColumnMajor,
143 const TStructure *structure = type.getStruct(); local
148 const TString &typeName = ((structure && !structure->name().empty()) ?
149 QualifiedStructNameString(*structure, false, false) : TypeString(type));
OutputGLSLBase.cpp 91 TStructure *structure = type.getStruct(); local
93 declareStruct(structure);
95 if (!structure->name().empty())
97 mDeclaredStructs.insert(structure->uniqueId());
139 const TStructure *structure = type.getStruct(); local
140 out << hashName(structure->name()) << "(";
142 const TFieldList &fields = structure->fields();
284 const TStructure *structure = node->getLeft()->getType().getStruct(); local
286 const TField *field = structure->fields()[index->getIConst(0)];
289 if (!mSymbolTable.findBuiltIn(structure->name(), mShaderVersion)
    [all...]
StructureHLSL.cpp 92 TStructure *structure = type.getStruct(); local
106 else if (structure)
108 const TString &structName = QualifiedStructNameString(*structure,
140 TString StructureHLSL::defineQualified(const TStructure &structure, bool useHLSLRowMajorPacking, bool useStd140Packing)
145 return define(structure, useHLSLRowMajorPacking, useStd140Packing, &padHelper);
149 return define(structure, useHLSLRowMajorPacking, useStd140Packing, NULL);
153 TString StructureHLSL::defineNameless(const TStructure &structure)
155 return define(structure, false, false, NULL);
158 TString StructureHLSL::define(const TStructure &structure, bool useHLSLRowMajorPacking,
161 const TFieldList &fields = structure.fields()
220 const TStructure* structure = type.getStruct(); local
    [all...]
OutputHLSL.cpp 237 TString OutputHLSL::structInitializerString(int indent, const TStructure &structure, const TString &rhsStructName)
256 const TFieldList &fields = structure.fields();
290 const TStructure &structure = *structNode->getType().getStruct(); local
293 flaggedStructs += "static " + Decorate(structure.name()) + " " + mappedName + " =\n";
294 flaggedStructs += structInitializerString(0, structure, originalName);
1585 const TStructure* structure = node->getLeft()->getType().getStruct(); local
1668 const TStructure &structure = *node->getLeft()->getType().getStruct(); local
1854 TStructure *structure = variable->getType().getStruct(); local
1986 TStructure *structure = symbol->getType().getStruct(); local
2828 const TStructure* structure = type.getStruct(); local
    [all...]
Types.h 230 interfaceBlock(0), structure(0)
238 interfaceBlock(0), structure(0)
246 interfaceBlock(0), structure(userDef)
254 interfaceBlock(interfaceBlockIn), structure(0)
366 return primarySize == 1 && secondarySize == 1 && !structure;
375 return structure;
379 structure = s;
398 structure == right.structure;
406 structure == right.structure
485 TStructure *structure; member in class:TType
    [all...]
ParseContext.cpp 537 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor");
612 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)");
638 error(line, "cannot be used with a structure", getQualifierString(pType.qualifier));
2513 TStructure* structure = new TStructure(structName, fieldList); local
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexEncodedValueType.java 17 package dex.structure;
  /external/chromium_org/tools/grit/grit/format/
data_pack.py 21 from grit.node import structure namespace
44 structure.StructureNode)):
rc.py 19 from grit.node import empty, include, message, structure namespace
36 elif isinstance(item, structure.StructureNode):
384 from grit.node import structure namespace
385 assert isinstance(item, structure.StructureNode)
414 from grit.node import structure namespace
416 assert isinstance(item, (structure.StructureNode, include.IncludeNode))
424 assert (isinstance(item, structure.StructureNode) and item.attrs['type'] in
445 if isinstance(item, structure.StructureNode) and item.IsExcludedFromRc():
456 # when formatting Structure nodes.
rc_unittest.py 20 from grit.node import structure namespace
81 <structure type="menu" name="IDC_KLONKMENU" file="grit\\testdata\klonk.rc" encoding="utf-16" />
82 <structure type="dialog" name="IDD_ABOUTBOX" file="grit\\testdata\klonk.rc" encoding="utf-16" />
83 <structure type="version" name="VS_VERSION_INFO" file="grit\\testdata\klonk.rc" encoding="utf-16" />
160 <structure type="tr_html" name="IDR_HTML" file="bingo.html"/>
161 <structure type="tr_html" name="IDR_HTML2" file="bingo2.html"/>
237 <structure type="tr_html" name="IDR_HTML" file="%s" />
239 struct, = root.GetChildrenOfType(structure.StructureNode)
262 <structure type="chrome_html" name="HTML_FILE1" file="%s" flattenhtml="true" />
264 struct, = root.GetChildrenOfType(structure.StructureNode
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
PropertyListIntersector.java 11 package org.eclipse.wb.internal.core.editor.structure.property;
25 * @coverage core.editor.structure
  /external/chromium_org/tools/grit/grit/tool/
rc2grd.py 17 from grit.node import structure namespace
284 information resources and HTML templates) and adds each as a <structure>
292 node.AddChild(structure.StructureNode.Construct(
298 node.AddChild(structure.StructureNode.Construct(node, id, res_type,
  /external/chromium_org/v8/src/
types-inl.h 124 ZoneTypeConfig::Type* ZoneTypeConfig::from_struct(Struct* structure) {
125 return reinterpret_cast<Type*>(structure);
139 Struct* structure = reinterpret_cast<Struct*>( local
141 structure[0] = reinterpret_cast<void*>(tag);
142 structure[1] = reinterpret_cast<void*>(length);
143 return structure;
148 void ZoneTypeConfig::struct_shrink(Struct* structure, int length) {
149 DCHECK(0 <= length && length <= struct_length(structure));
150 structure[1] = reinterpret_cast<void*>(length);
155 int ZoneTypeConfig::struct_tag(Struct* structure) {
282 i::Handle<Struct> structure = isolate->factory()->NewFixedArray(length + 1); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/cloog/
options.h 120 int structure ; /* 1 if I want to print the CloogProgram structure before the member in struct:cloogoptions
141 * Structure display function *
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
options.h 120 int structure ; /* 1 if I want to print the CloogProgram structure before the member in struct:cloogoptions
141 * Structure display function *
  /external/clang/test/SemaCXX/
reinterpret-cast.cpp 6 struct structure { int m; }; struct
25 const int structure::*psi = 0;
26 (void)reinterpret_cast<const int structure::*>(psi);
28 structure s;
29 (void)reinterpret_cast<structure>(s); // expected-error {{reinterpret_cast from 'structure' to 'structure' is not allowed}}
50 structure *p3 = reinterpret_cast<structure*>(p2);
92 const int structure::*psi = 0
    [all...]
cstyle-cast.cpp 169 struct structure { int m; }; struct
187 structure *p3 = (structure*)(p2);
223 const int structure::*psi = 0;
224 (void)(const float structure::*)(psi);
225 (void)(int structure::*)(psi); // const_cast appended
227 void (structure::*psf)() = 0;
228 (void)(int (structure::*)())(psf);
230 (void)(void (structure::*)())(psi); // expected-error-re {{C-style cast from 'const int structure::*' to 'void (structure::*)(){{( __attribute__\(\(thiscall\)\))?}}' is not allowed}
    [all...]
functional-cast.cpp 230 struct structure { int m; }; struct
251 typedef structure *structurep;
252 structure *p3 = structurep(p2);
297 const int structure::*psi = 0;
298 typedef const float structure::*structurecfmp;
300 typedef int structure::*structureimp;
303 void (structure::*psf)() = 0;
304 typedef int (structure::*structureimfp)();
307 typedef void (structure::*structurevmfp)();
308 (void)structurevmfp(psi); // expected-error-re {{functional-style cast from 'const int structure::*' to 'structurevmfp' (aka 'void (structure::*)(){{( __attribute__\(\(thiscall\)\))?}}') is not a (…)
    [all...]
  /external/chromium_org/tools/grit/grit/node/
misc.py 315 from grit.node import structure namespace
326 structure.StructureNode, variant.SkeletonNode)):
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.h 133 * \c GLSL_TYPE_STRUCT, it is the number of elements in the structure and
134 * the number of values pointed to by \c fields.structure (below).
144 struct glsl_struct_field *structure; /**< List of struct fields. */ member in union:glsl_type::__anon18881
291 * There are no implicit array or structure conversions. For example,
442 * Get the type of a structure field
445 * Pointer to the type of the named field. If the type is not a structure
  /external/mesa3d/src/glsl/
glsl_types.h 133 * \c GLSL_TYPE_STRUCT, it is the number of elements in the structure and
134 * the number of values pointed to by \c fields.structure (below).
144 struct glsl_struct_field *structure; /**< List of struct fields. */ member in union:glsl_type::__anon11365
291 * There are no implicit array or structure conversions. For example,
442 * Get the type of a structure field
445 * Pointer to the type of the named field. If the type is not a structure

Completed in 1067 milliseconds

12 3