HomeSort by relevance Sort by last modified time
    Searched refs:locations (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/jmonkeyengine/engine/src/core/checkers/quals/
DefaultQualifier.java 20 * unrelated type systems, or with different {@code locations} fields) at
42 /** @return the locations to which the annotation should be applied */
43 DefaultLocation[] locations() default {DefaultLocation.ALL};
  /libcore/luni/src/test/java/libcore/java/net/
OldHttpRetryExceptionTest.java 40 String [] locations = {"file:\\error.txt", "http:\\localhost", local
45 codes[i], locations[i]);
49 assertEquals(locations[i], hre.getLocation());
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
LodCalculator.java 44 * cameras, or other locations.
50 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String,UpdatedTerrainPatch> updates);
PerspectiveLodCalculator.java 77 public boolean calculateLod(List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) {
78 return calculateLod(patch, locations, updates);
81 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) {
95 //Vector3f toPatchDir = locations.get(0).subtract(patchPos).normalizeLocal();
97 float distance = patchPos.distance(locations.get(0));
DistanceLodCalculator.java 65 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) {
66 float distance = getCenterLocation(terrainPatch).distance(locations.get(0));
  /external/webkit/Source/WebCore/platform/graphics/cg/
GradientCG.cpp 88 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/llvm/lib/CodeGen/
LiveDebugVariables.cpp 116 /// Numbered locations referenced by locmap.
117 SmallVector<MachineOperand, 4> locations; member in class:__anon11423::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.push_back(LocMO)
    [all...]
  /external/chromium/chrome/browser/ui/web_applications/
web_app_ui.cc 167 // Locations to check to shortcut_paths.
172 } 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/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 88 StackTraceElement locations[]=dummyException.getStackTrace(); local
92 if( locations!=null && locations.length >2 ) {
93 StackTraceElement caller=locations[2];
  /external/qemu/android/skin/
file.h 82 SkinLocation* locations; member in struct:SkinLayout
87 SkinLocation* __loc = (layout)->locations; \
  /external/iproute2/tc/
emp_ematch.y 9 %locations
  /external/webkit/Source/WebCore/bindings/v8/
DebuggerScript.js 103 var locations = Debug.findBreakPointActualLocations(breakId);
104 if (!locations.length)
106 args.lineNumber = locations[0].line;
107 args.columnNumber = locations[0].column;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
JavaQuickAssistant.java 43 IProblemLocation[] locations) throws CoreException {
  /external/chromium/chrome/browser/web_applications/
web_app.cc 238 // Locations to add to shortcut_paths.
243 } locations[] = {
264 for (int i = 0; i < arraysize(locations); ++i) {
265 if (locations[i].use_this_location) {
269 if (locations[i].location_id == base::PATH_START)
272 if (!PathService::Get(locations[i].location_id, &path)) {
277 if (locations[i].sub_dir != NULL)
278 path = path.Append(locations[i].sub_dir);
  /frameworks/base/core/java/android/widget/
GridLayout.java 76 * wishes to occupy, GridLayout assigns cell locations automatically using its:
971 int[] locations = axis.getLocations(); local
1189 public int[] locations; field in class:GridLayout.Axis
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 76 * wishes to occupy, GridLayout assigns cell locations automatically using its:
797 int[] xs = horizontalAxis.locations;
805 int[] ys = verticalAxis.locations;
912 int[] locations = axis.getLocations(); local
1118 public int[] locations; field in class:GridLayout.Axis
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /bootable/recovery/edify/
parser.y 34 %locations
  /external/bison/data/
glr.cc 39 # The locations
42 # the locations in a (C++) union, the position and location classes
48 # We require a pure interface using locations.
92 # Hijack the initial action to initialize the locations.
268 /// Symbol locations.
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainGrid.java 284 public void update(List<Vector3f> locations, LodCalculator lodCalculator) {
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);
TerrainQuad.java 256 public void update(List<Vector3f> locations, LodCalculator lodCalculator) {
257 updateLOD(locations, lodCalculator);
276 protected void updateLOD(List<Vector3f> locations, LodCalculator lodCalculator) {
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) {
325 for(Vector3f l : locations)
330 private boolean lastCameraLocationsTheSame(List<Vector3f> locations) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EventLocationAdapter.java 124 // Constants for recent locations query (in Events table):
256 * Return filter for matching against contacts info and recent locations.
265 * recent locations.
277 // Start the recent locations query (async).
292 // Wait for the locations query.
295 // Add the matched recent locations to returned results. If a match exists in
296 // both the recent locations query and the contacts addresses, only display it
305 Log.e(TAG, "Failed waiting for locations query results.", e);
307 Log.e(TAG, "Failed waiting for locations query results.", e);
420 * Matches the input string against recent locations
456 TreeSet<String> locations = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); local
    [all...]
  /external/libpng/contrib/gregbook/
makevms.com 8 $! Set locations where zlib and libpng sources live.
  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerModel.js 87 function didSetBreakpoint(error, breakpointId, locations)
90 callback(error ? null : breakpointId, locations);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
ManagerService.java 264 List<String> locations = EXPECTED_RESULT_LOCATION_RELATIVE_DIR_PREFIXES; local
268 relativePath = locations.get(i) + originalRelativePath;

Completed in 608 milliseconds

1 2 3 4 5