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

12 3 4 5 6 7 8 91011>>

  /cts/tools/dex-tools/src/dex/structure/
DexAnnotation.java 17 package dex.structure;
DexEncodedValueType.java 17 package dex.structure;
  /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
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
langcheck.php 248 report_error(TYPE_ERROR, 'Language file does not contain a $language_data structure to check!');
250 report_error(TYPE_ERROR, 'Language file contains a $language_data structure which is not an array!');
262 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'COMMENT_SIGNLE\'] structure to check!');
264 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'COMMENT_SINGLE\'] structure which is not an array!');
268 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'COMMENT_MULTI\'] structure to check!');
270 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'COMMENT_MULTI\'] structure which is not an array!');
275 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'COMMENT_REGEXP\'] structure which is not an array!');
280 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'QUOTEMARKS\'] structure to check!');
282 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'QUOTEMARKS\'] structure which is not an array!');
287 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'HARDQUOTE\'] structure which is not an array!')
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialContext.java 8 import com.jme3.scene.plugins.blender.file.Structure;
40 /* package */final List<Structure> mTexs;
41 /* package */final List<Structure> textures;
43 /* package */final Map<Texture, Structure> textureToMTexMap;
62 /* package */MaterialContext(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
63 name = structure.getName();
65 int mode = ((Number) structure.getFieldValue("mode")).intValue();
70 int diff_shader = ((Number) structure.getFieldValue("diff_shader")).intValue();
74 float r = ((Number) structure.getFieldValue("r")).floatValue()
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexFieldImpl.java 21 import dex.structure.DexAnnotation;
22 import dex.structure.DexClass;
23 import dex.structure.DexField;
DexAnnotationImpl.java 20 import dex.structure.DexAnnotation;
21 import dex.structure.DexAnnotationAttribute;
DexParameterImpl.java 23 import dex.structure.DexAnnotation;
24 import dex.structure.DexParameter;
  /external/chromium_org/tools/grit/grit/node/
structure_unittest.py 6 '''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)
mapping.py 17 from grit.node import structure namespace
43 'structure' : structure.StructureNode,
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
FileBlockHeader.java 39 * start position in the stream and using this the structure can fill itself with the proper data.
66 * Memory address the structure was located when written to disk [4 or 8 bytes (defined in file header as a pointer
70 /** Index of the SDNA structure [4 bytes]. */
72 /** Number of structure located in this file-block [4 bytes]. */
104 * This method returns the structure described by the header filled with appropriate data.
107 * @return structure filled with data
110 public Structure getStructure(BlenderContext blenderContext) throws BlenderFileException {
112 Structure structure = blenderContext.getDnaBlockData().getStructure(sdnaIndex); local
113 structure.fill(blenderContext.getInputStream());
    [all...]
Structure.java 42 * A class representing a single structure in the file.
45 public class Structure implements Cloneable {
49 /** The address of the block that fills the structure. */
51 /** The type of the structure. */
54 * The fields of the structure. Each field consists of a pair: name-type.
59 * Constructor that copies the data of the structure.
60 * @param structure
61 * the structure to copy.
63 * the blender context of the structure
67 private Structure(Structure structure, BlenderContext blenderContext) throws CloneNotSupportedException
186 Structure structure = first.fetchData(blenderContext.getInputStream()).get(0); local
    [all...]
Pointer.java 85 * this exception is thrown when the blend file structure is somehow invalid or corrupted
87 public List<Structure> fetchData(BlenderInputStream inputStream) throws BlenderFileException {
91 List<Structure> structures = null;
110 structures = new ArrayList<Structure>(dataFileBlock.getCount());
112 Structure structure = blenderContext.getDnaBlockData().getStructure(dataFileBlock.getSdnaIndex()); local
113 structure.fill(inputStream);
114 structures.add(structure);
146 * This method returns the old memory address of the structure pointed by the pointer.
147 * @return the old memory address of the structure pointed by the pointer
    [all...]
  /external/clang/test/SemaCXX/
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 {{functional-style cast from 'const int structure::*' to 'structurevmfp' (aka 'void (structure::*)()') is not allowed}
    [all...]
  /cts/tools/signature-tools/test/signature/converter/dex/
GenericSignatureParserTest.java 24 import dex.structure.DexClass;
25 import dex.structure.DexFile;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
OutputGLSLBase.h 55 bool structDeclared(const TStructure* structure) const;
56 void declareStruct(const TStructure* structure);
  /external/chromium_org/tools/grit/grit/format/policy_templates/
template_formatter.py 13 from grit.node import structure namespace
65 if (isinstance(item, structure.StructureNode) and
  /external/chromium_org/tools/grit/grit/format/
rc.py 19 from grit.node import empty, include, message, structure namespace
36 elif isinstance(item, structure.StructureNode):
380 from grit.node import structure namespace
381 assert isinstance(item, structure.StructureNode)
410 from grit.node import structure namespace
412 assert isinstance(item, (structure.StructureNode, include.IncludeNode))
420 assert (isinstance(item, structure.StructureNode) and item.attrs['type'] in
441 if isinstance(item, structure.StructureNode) and item.IsExcludedFromRc():
452 # 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...]
  /frameworks/base/tools/aidl/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /build/tools/droiddoc/templates-sdk/
sampleindex.cs 36 <div class="structure-<?cs var:file.Type ?>">
40 <div class="toggle-content opened structure-dir">
43 class="toggle-content-img structure-toggle-img" height="9px" width="9px" />
48 <div class="toggle-content-toggleme structure-toggleme">
65 <?cs else ?> <?cs # else not project structure doc ?>
69 <?cs # Remove project structure from landing pages for now
70 # <h2>Project Structure</h2>
  /external/chromium_org/tools/grit/grit/tool/
diff_structures.py 13 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,
  /external/chromium_org/tools/grit/grit/
xtb_reader_unittest.py 39 def Callback(id, structure):
40 messages.append((id, structure))
99 def Callback(id, structure):
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderHelper.java 38 import com.jme3.scene.plugins.blender.file.Structure;
143 * This method loads the properties if they are available and defined for the structure.
144 * @param structure
145 * the structure we read the properties from
152 protected Properties loadProperties(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
154 Structure id = (Structure) structure.getFieldValue("ID");
158 Structure propertiesStructure = pProperties.fetchData(blenderContext.getInputStream()).get(0);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/bundles/
ClearSilverCompatibleFunctions.java 31 import com.google.clearsilver.jsilver.functions.structure.FirstFunction;
32 import com.google.clearsilver.jsilver.functions.structure.LastFunction;
33 import com.google.clearsilver.jsilver.functions.structure.SubcountFunction;
44 // Structure functions.

Completed in 762 milliseconds

12 3 4 5 6 7 8 91011>>