/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
FileBlockHeader.java | 32 package com.jme3.scene.plugins.blender.file;
38 * A class that holds the header data of a file block. The file block itself is not implemented. This class holds its
61 /** Identifier of the file-block [4 bytes]. */
63 /** Total length of the data after the file-block-header [4 bytes]. */
66 * Memory address the structure was located when written to disk [4 or 8 bytes (defined in file header as a pointer
72 /** Number of structure located in this file-block [4 bytes]. */
158 * This method returns the start position of the data block in the blend file stream.
166 * This method indicates if the block is the last block in the file.
167 * @return true if this block is the last one in the file nad false otherwise [all...] |
Structure.java | 32 package com.jme3.scene.plugins.blender.file; 42 * A class representing a single structure in the file. 88 * this exception occurs if the amount of fields, defined in the file, is negative 115 * an exception is thrown when the blend file is somehow invalid or corrupted 166 * held by this structure within the blend file. 171 * this exception is thrown when the blend file structure is somehow invalid or corrupted 270 * This enum enumerates all known data types that can be found in the blend file. 303 * this exception is thrown if the given type name does not exist in the blend file
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestQ3.java | 53 import java.io.File; 65 File file = new File("quake3level.zip"); local 66 if (!file.exists()) {
|
/external/jmonkeyengine/engine/src/test/jme3test/terrain/ |
TerrainGridSerializationTest.java | 23 import java.io.File; 38 File file = new File("TerrainGridTestData.zip"); local 39 if (!file.exists()) {
|
TerrainGridTest.java | 28 import java.io.File; 48 File file = new File("TerrainGridTestData.zip"); local 49 if (!file.exists()) {
|
TerrainGridTileLoaderTest.java | 26 import java.io.File; 46 File file = new File("TerrainGridTestData.zip"); local 47 if (!file.exists()) { 103 // BinaryExporter.getInstance().save(terrain, new File("/Users/normenhansen/Documents/Code/jme3/engine/src/test-data/TerrainGrid/"
|
/external/libvncserver/x11vnc/ |
sslcmds.c | 5 This file is part of x11vnc. 28 modify this file, you may extend this exception to your version of the 29 file, but you are not obligated to do so. If you do not wish to do 194 FILE *in = fopen(stunnel_pem, "r"); 208 char *file = get_ssl_verify_file(ssl_verify); local 209 if (file) { 210 ssl_verify = file; 233 FILE *in; 352 /* temporary file */ 548 FILE *out 653 FILE *file; local [all...] |
/external/libvpx/libvpx/test/ |
video_source.h | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 51 static FILE *OpenTestDataFile(const std::string& file_name) { 56 static FILE *GetTempOutFile(std::string *file_name) { 85 FILE *file() { function in class:libvpx_test::TempOutFile 95 // Close if file pointer is associated with an open file 104 FILE *file_ [all...] |
/external/libvpx/libvpx/ |
tools_common.h | 5 * that can be found in the LICENSE file in the root of the source 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 45 /* Use 32-bit file operations in WebM file format when building ARM 86 FILE *file; member in struct:VpxInputContext 107 FILE *set_binary_mode(FILE *stream); 115 /* The tool including this file must define usage_exit() * [all...] |
/external/libxml2/ |
error.c | 78 vfprintf((FILE *)xmlGenericErrorContext, msg, args); 108 * One can simply force messages to be emitted to another FILE * than 109 * stderr by setting @ctx to this file handle and @handler to NULL. 149 * Displays the associated file and line informations for the current input 246 char *file = NULL; local 263 file = err->file; 293 if (file != NULL) 294 channel(data, "%s:%d: ", file, line); 438 * @file: the file source of the error (or NULL 956 char *message, *file, *str1, *str2, *str3; local [all...] |
/external/linux-tools-perf/src/tools/perf/util/ |
probe-event.h | 44 char *file; /* File path */ member in struct:perf_probe_point 87 char *file; /* File name */ member in struct:line_range
|
svghelper.c | 35 static FILE *svgfile; 207 FILE *file; local 211 file = fopen("/proc/cpuinfo", "r"); 212 if (file) { 213 while (fgets(buf, 255, file)) { 219 fclose(file); 223 file = fopen("/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies", "r"); 224 if (file) { 225 while (fgets(buf, 255, file)) { [all...] |
util.c | 63 FILE *from_fp = fopen(from, "r"), *to_fp; 313 char *file; local 319 file = malloc(strlen(tracing) + strlen(name) + 2); 320 if (!file) 323 sprintf(file, "%s/%s", tracing, name); 324 return file; 327 void put_tracing_file(char *file) 329 free(file);
|
/external/linux-tools-perf/src/tools/perf/util/scripting-engines/ |
trace-event-perl.c | 46 const char *file = __FILE__; local 50 file); 51 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); 464 FILE *ofp;
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
DWARFDebugLine.h | 5 // This file is distributed under the University of Illinois Open Source 101 bool GetFile(uint32_t file_idx, std::string& file, std::string& dir) const; 117 file(rhs.file), 133 file = rhs.file; 152 uint16_t file; // An unsigned integer indicating the identity of the source file corresponding to a machine instruction. member in struct:DWARFDebugLine::Row
|
/external/llvm/tools/llvm-objdump/ |
COFFDump.cpp | 5 // This file is distributed under the University of Illinois Open Source 10 /// \file 11 /// \brief This file implements the COFF-specific dumper for llvm-objdump. 375 // Given the COFF object file, this function returns the relocations for .pdata 448 /// pointing to an executable file. 467 /// pointing to an object file. Unlike executable, fields in RuntimeFunction 546 const COFFObjectFile *file = dyn_cast<const COFFObjectFile>(Obj); local 547 printLoadConfiguration(file); 548 printImportTables(file); 549 printExportTable(file); [all...] |
/external/llvm/tools/llvm-size/ |
llvm-size.cpp | 5 // This file is distributed under the University of Illinois Open Source 59 ArchFlags("arch", cl::desc("architecture(s) from a Mach-O file to dump"), 86 outs() << ToolName << ": error reading file: " << ec.message() << ".\n"; 194 /// This is when used when @c OutputFormat is berkeley with a Mach-O file and 392 /// @brief Checks to see if the @p o ObjectFile is a Mach-O file and if it is 394 /// make sure this Mach-O file is one of those architectures or all 397 static bool checkMachOAndArchFlags(ObjectFile *o, StringRef file) { 418 errs() << ToolName << ": file: " << file 426 /// @brief Print the section sizes for @p file. If @p file is an archive, prin 432 errs() << ToolName << ": '" << file << "': " local 694 errs() << ToolName << ": " << file << ": " local [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_sanity.c | 41 uint file : 28; member in struct:__anon16306 68 unsigned key = reg->file; 77 uint file, uint index) 79 reg->file = file; 87 uint file, uint index1, uint index2) 89 reg->file = file; 103 dst->Register.File, 108 dst->Register.File, 396 uint file; local [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.h | 86 void mkClobber(DataFile file, uint32_t regMask, int regUnitLog2); 134 DataFile file, int8_t fileIdx); 159 DataFile file; member in class:nv50_ir::BuildUtil::DataArray 163 Symbol *mkSymbol(DataFile file, int8_t fileIndex,
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_variable.c | 108 .File = RC_FILE_TEMPORARY; 116 .File = RC_FILE_TEMPORARY; 283 new->Dst.File = DstFile; 319 rc_register_file file; local 333 file = RC_FILE_TEMPORARY; 336 file = RC_FILE_OUTPUT; 340 file = RC_FILE_NONE; 342 new_var = rc_variable(c, file, sub_inst->DestIndex, writemask, 371 new_var = rc_variable(c, inst->U.I.DstReg.File,
|
/external/mesa3d/src/gtest/src/ |
gtest-filepath.cc | 68 // noted, a file path can contain either kind of path separators, or a mixture 115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns 116 // FilePath("dir/file"). If a case-insensitive extension is not 143 // Example: FilePath("path/to/file").RemoveDirectoryName() returns 144 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 145 // the FilePath unmodified. If there is no file part ("just_a_dir/") it 154 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". 157 // not have a file, like "just/a/dir/", it returns the FilePath unmodified. 180 String file; local 182 file = String::Format("%s.%s", base_name.c_str(), extension) [all...] |
/external/mesa3d/src/mesa/x86/rtasm/ |
x86sse.h | 12 unsigned file:3; member in struct:x86_reg 91 struct x86_reg x86_make_reg( enum x86_reg_file file,
|
/external/nanopb-c/generator/proto/ |
nanopb_pb2.py | 19 file=DESCRIPTOR, variable 93 file=DESCRIPTOR, variable
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyServer.java | 5 * you may not use this file except in compliance with the License. 23 import java.io.File; 44 private final File baseDirectory; 47 public SpdyServer(File baseDirectory, SSLSocketFactory sslSocketFactory) { 107 File file = new File(baseDirectory + path); local 109 if (file.isDirectory()) { 110 serveDirectory(stream, file.listFiles()); 111 } else if (file.exists()) [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
RequestTest.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 76 @Test public void file() throws Exception { method in class:RequestTest 77 File file = File.createTempFile("RequestTest", "tmp"); local 78 FileWriter writer = new FileWriter(file); 83 RequestBody body = RequestBody.create(contentType, file);
|