Searched defs:locations (Results 1 - 25 of 40) sorted by relevance

12

/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DLodCalculator.java44 * cameras, or other locations.
50 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String,UpdatedTerrainPatch> updates); argument
H A DDistanceLodCalculator.java65 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) { argument
66 float distance = getCenterLocation(terrainPatch).distance(locations.get(0));
H A DPerspectiveLodCalculator.java77 public boolean calculateLod(List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) { argument
78 return calculateLod(patch, locations, updates);
81 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) { argument
95 //Vector3f toPatchDir = locations.get(0).subtract(patchPos).normalizeLocal();
97 float distance = patchPos.distance(locations.get(0));
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGradientCG.cpp88 Vector<CGFloat, cReservedStops> locations; local
89 locations.reserveCapacity(m_stops.size());
97 locations.uncheckedAppend(m_stops[i].stop);
100 m_gradient = CGGradientCreateWithColorComponents(deviceRGBColorSpaceRef(), colorComponents.data(), locations.data(), m_stops.size());
/external/chromium/chrome/browser/ui/web_applications/
H A Dweb_app_ui.cc172 } locations[] = { local
191 for (int i = 0; i < arraysize(locations); ++i) {
192 locations[i].use_this_location = false;
195 if (!PathService::Get(locations[i].location_id, &path)) {
200 if (locations[i].sub_dir != NULL)
201 path = path.Append(locations[i].sub_dir);
206 locations[i].use_this_location = true;
/external/qemu/android/skin/
H A Dfile.h82 SkinLocation* locations; member in struct:SkinLayout
87 SkinLocation* __loc = (layout)->locations; \
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGrid.java284 public void update(List<Vector3f> locations, LodCalculator lodCalculator) { argument
288 // 2: grids are associated with locations, and no incremental update is done, we load new grids for new locations, and unload those that are not needed anymore
289 Vector3f cam = locations.isEmpty() ? Vector3f.ZERO.clone() : locations.get(0);
304 super.update(locations, lodCalculator);
H A DTerrainQuad.java256 public void update(List<Vector3f> locations, LodCalculator lodCalculator) { argument
257 updateLOD(locations, lodCalculator);
276 protected void updateLOD(List<Vector3f> locations, LodCalculator lodCalculator) { argument
290 if (lastCameraLocationsTheSame(locations) && !lodCalculator.isLodOff())
293 lastCameraLocations = cloneVectorList(locations);
296 lastCameraLocations = cloneVectorList(locations);
311 UpdateLOD updateLodThread = new UpdateLOD(locations, lodCalculator);
323 private List<Vector3f> cloneVectorList(List<Vector3f> locations) { argument
325 for(Vector3f l : locations)
330 private boolean lastCameraLocationsTheSame(List<Vector3f> locations) { argument
1232 setHeight(List<LocationHeight> locations, boolean overrideHeight) argument
[all...]
/external/valgrind/tsan/
H A Dsuppressions.cc49 vector<Location> locations; member in struct:StackTraceTemplate
185 trace->locations.push_back(location);
194 trace->locations.push_back(location);
243 trace->locations.push_back(location);
379 const int tmpl_size = ctx.tmpl->locations.size();
381 Location& location = ctx.tmpl->locations[tmpl_index];
/external/webkit/Source/WebCore/inspector/
H A DInspectorDebuggerAgent.cpp154 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, const int* const optionalColumnNumber, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorArray>* locations) argument
172 (*locations)->pushObject(location);
/external/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp116 /// Numbered locations referenced by locmap.
117 SmallVector<MachineOperand, 4> locations; member in class:__anon9261::UserValue
181 // For register locations we dont care about use/def and other flags.
182 for (unsigned i = 0, e = locations.size(); i != e; ++i)
183 if (locations[i].isReg() &&
184 locations[i].getReg() == LocMO.getReg() &&
185 locations[i].getSubReg() == LocMO.getSubReg())
188 for (unsigned i = 0, e = locations.size(); i != e; ++i)
189 if (LocMO.isIdenticalTo(locations[i]))
191 locations
[all...]
/external/stressapptest/src/
H A Dos.cc141 // Returns a list of locations corresponding to HD devices.
144 list<string> locations; local
145 return locations;
H A Dsat.cc139 // Autodetect file locations.
141 // Get a space separated sting of disk locations.
142 list<string> locations = os_->FindFileDevices(); local
145 while (!locations.empty()) {
147 string disk = locations.back();
148 locations.pop_back();
423 // Initialize page locations.
487 // Initialize page locations.
814 // Autodetect tempfile locations.
984 " --findfiles find locations t
[all...]
/external/skia/src/gpu/gl/
H A DGrGLProgram.cpp1215 // Bind the attrib locations to same values for all shaders
1316 StageUniLocations& locations = programData->fUniLocations.fStages[s]; local
1318 if (kUseUniform == locations.fTextureMatrixUni) {
1321 GL_CALL_RET(locations.fTextureMatrixUni,
1323 GrAssert(kUnusedUniform != locations.fTextureMatrixUni);
1326 if (kUseUniform == locations.fSamplerUni) {
1329 GL_CALL_RET(locations.fSamplerUni,
1331 GrAssert(kUnusedUniform != locations.fSamplerUni);
1334 if (kUseUniform == locations.fNormalizedTexelSizeUni) {
1337 GL_CALL_RET(locations
1404 genRadialVS(int stageNum, ShaderCodeSegments* segments, GrGLProgram::StageUniLocations* locations, const char** radial2VaryingVSName, const char** radial2VaryingFSName, const char* varyingVSName, int varyingDims, int coordDims) argument
1561 gen2x2FS(int stageNum, ShaderCodeSegments* segments, GrGLProgram::StageUniLocations* locations, GrStringBuilder* sampleCoords, const char* samplerName, const char* texelSizeName, const char* swizzle, const char* fsOutColor, GrStringBuilder& texFunc, GrStringBuilder& modulate, bool complexCoord, int coordDims) argument
1594 genConvolutionVS(int stageNum, const StageDesc& desc, ShaderCodeSegments* segments, GrGLProgram::StageUniLocations* locations, GrGLShaderVar** kernel, const char** imageIncrementName, const char* varyingVSName) argument
1664 genMorphologyVS(int stageNum, const StageDesc& desc, ShaderCodeSegments* segments, GrGLProgram::StageUniLocations* locations, const char** imageIncrementName, const char* varyingVSName) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp1202 // - both a new-location string and embedded locations structure
1205 const GValue* locations = gst_structure_get_value(m_mediaLocations, "locations"); local
1207 if (locations)
1208 m_mediaLocationCurrentIndex = static_cast<int>(gst_value_list_get_size(locations)) -1;
1219 const GValue* locations = gst_structure_get_value(m_mediaLocations, "locations"); local
1222 if (!locations) {
1235 const GValue* location = gst_value_list_get_value(locations,
/external/kernel-headers/original/linux/
H A Dnfs_xdr.h707 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES]; member in struct:nfs4_fs_locations
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jar ... _r1/s?defs= " () public static boolean canPack () String[] locations int result int i public void " href="/4.2. ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.filebuffers_3.5.100.v20100520-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.logging_1.0.4.v201005080501.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/v8/src/
H A Ddebug.cc1543 // point location when looking for source break locations.
1618 Handle<FixedArray> locations = local
1626 locations->set(count++, break_point_info->statement_position());
1630 return locations;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...

Completed in 607 milliseconds

12