Searched defs:structure (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/tools/grit/grit/format/policy_templates/
H A Dtemplate_formatter.py13 from grit.node import structure namespace
65 if (isinstance(item, structure.StructureNode) and
/external/chromium_org/tools/grit/grit/node/
H A Dmapping.py17 from grit.node import structure namespace
43 'structure' : structure.StructureNode,
H A Dempty.py12 from grit.node import structure namespace
45 return isinstance(child, (structure.StructureNode,
H A Dstructure_unittest.py6 '''Unit tests for <structure> nodes.
21 from grit.node import structure namespace
29 <structure type="dialog" name="IDD_ABOUTBOX" file="klonk.rc" encoding="utf-16-le">
31 </structure>
40 node = structure.StructureNode()
52 <structure type="chrome_html" name="hello_tmpl" file="structure_variables.html" expand_variables="true" variables="GREETING=Hello,THINGS=foo,, bar,, baz,EQUATION=2+2==4,filename=simple" flattenhtml="true"></structure>
56 node, = grd.GetChildrenOfType(structure.StructureNode)
/external/chromium_org/tools/grit/grit/tool/
H A Dbuildinfo.py13 from grit.node import structure namespace
52 if (isinstance(node, structure.StructureNode) and
H A Ddiff_structures.py13 from grit.node import structure namespace
22 Allows you to view the differences in the structure of two files,
30 for structure types like 'dialog' to identify the part of the file to look at.
34 for gatherer in structure._GATHERERS:
88 """Given the name of the structure type (self.structure_type), the filename
89 of the file holding the original structure, and optionally the "section" key
91 temporary file holding a "static" translation of the original structure
102 original = structure._GATHERERS[self.structure_type](original_filename,
H A Drc2grd.py17 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/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
H A DFirstFunction.java17 package com.google.clearsilver.jsilver.functions.structure;
H A DLastFunction.java17 package com.google.clearsilver.jsilver.functions.structure;
H A DNameFunction.java17 package com.google.clearsilver.jsilver.functions.structure;
H A DSubcountFunction.java17 package com.google.clearsilver.jsilver.functions.structure;
/external/chromium_org/tools/grit/grit/format/
H A Drc_header.py97 from grit.node import empty, include, message, misc, structure namespace
115 misc.IdentifierNode, structure.StructureNode))
H A Dresource_map.py107 from grit.node import include, structure, message namespace
H A Ddata_pack.py21 from grit.node import structure namespace
44 structure.StructureNode)):
H A Drc.py19 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():
H A Drc_unittest.py20 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
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
H A DIPage.java11 package org.eclipse.wb.internal.core.editor.structure;
21 * @coverage core.editor.structure
H A DPageSiteComposite.java11 package org.eclipse.wb.internal.core.editor.structure;
28 * @coverage core.editor.structure
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
H A DPropertyListIntersector.java11 package org.eclipse.wb.internal.core.editor.structure.property;
25 * @coverage core.editor.structure
/external/chromium_org/chrome/browser/safe_browsing/
H A Dpe_image_reader_win.h103 // Populates |structure| with a pointer to a desired structure of type T at
105 // false if the structure does not fully fit within the image at the given
107 template<typename T> bool GetStructureAt(size_t offset, const T** structure) { argument
108 return GetStructureAt(offset, sizeof(**structure), structure);
111 // Populates |structure| with a pointer to a desired structure of type T at
113 // |structure_size| bytes. Returns false if the structure does not fully fit
117 const T** structure) {
115 GetStructureAt(size_t offset, size_t structure_size, const T** structure) argument
[all...]
/external/chromium_org/chrome/installer/test/
H A Dpe_image_resources.cc18 bool StructureAt(const uint8* data, size_t data_size, const T** structure) { argument
20 *structure = reinterpret_cast<const T*>(data);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUtilsHLSL.cpp65 TString DecorateField(const TString &string, const TStructure &structure) argument
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) argument
173 if (structure
181 QualifiedStructNameString(const TStructure &structure, bool useHLSLRowMajorPacking, bool useStd140Packing) argument
[all...]
H A Dutil.cpp287 const TStructure *structure = type.getStruct(); local
293 if (!structure)
302 variable.structName = structure->name().c_str();
304 const TFieldList &fields = structure->fields();
H A DStructureHLSL.cpp92 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) argument
145 return define(structure, useHLSLRowMajorPacking, useStd140Packing, &padHelper);
149 return define(structure, useHLSLRowMajorPacking, useStd140Packing, NULL);
153 TString StructureHLSL::defineNameless(const TStructure &structure) argument
155 return define(structure, false, false, NULL);
158 TString StructureHLSL::define(const TStructure &structure, bool useHLSLRowMajorPacking, argument
161 const TFieldList &fields = structure
220 const TStructure* structure = type.getStruct(); local
[all...]
/external/chromium_org/v8/src/
H A Dtypes-inl.h124 ZoneTypeConfig::Type* ZoneTypeConfig::from_struct(Struct* structure) { argument
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) { argument
149 DCHECK(0 <= length && length <= struct_length(structure));
150 structure[1] = reinterpret_cast<void*>(length);
155 int ZoneTypeConfig::struct_tag(Struct* structure) { argument
161 struct_length(Struct* structure) argument
167 struct_get(Struct* structure, int i) argument
174 struct_set(Struct* structure, int i, Type* x) argument
182 struct_get_value(Struct* structure, int i) argument
190 struct_set_value( Struct* structure, int i, i::Handle<V> x) argument
273 from_struct( i::Handle<Struct> structure) argument
282 i::Handle<Struct> structure = isolate->factory()->NewFixedArray(length + 1); local
289 struct_shrink(i::Handle<Struct> structure, int length) argument
295 struct_tag(i::Handle<Struct> structure) argument
301 struct_length(i::Handle<Struct> structure) argument
307 struct_get( i::Handle<Struct> structure, int i) argument
315 struct_set( i::Handle<Struct> structure, int i, i::Handle<Type> type) argument
323 struct_get_value( i::Handle<Struct> structure, int i) argument
332 struct_set_value( i::Handle<Struct> structure, int i, i::Handle<V> x) argument
[all...]

Completed in 2347 milliseconds

12