Searched refs:locations (Results 1 - 25 of 87) sorted by relevance

1234

/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_l_o_c_a.py18 locations = array.array(format)
19 locations.fromstring(data)
21 locations.byteswap()
24 for i in range(len(locations)):
25 l.append(locations[i] * 2)
26 locations = l
27 if len(locations) < (ttFont['maxp'].numGlyphs + 1):
28 warnings.warn("corrupt 'loca' table, or wrong numGlyphs in 'maxp': %d %d" % (len(locations) - 1, ttFont['maxp'].numGlyphs))
29 self.locations = locations
[all...]
H A DE_B_L_C_.py406 # Remove any of the glyph locations and names that are flagged as skipped.
415 dataPairs = list(filter(isValidLocation, zip(self.names, self.locations)))
416 self.names, self.locations = list(map(list, zip(*dataPairs)))
438 self.locations = list(zip(modifiedOffsets, modifiedOffsets[1:]))
446 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]):
453 # Run a simple algorithm to add skip glyphs to the data locations at
456 locQueue = deque(self.locations)
466 # Now that all the locations are collected, pack them appropriately into
470 # Image data offset must be less than or equal to the minimum of locations
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_l_o_c_a.py18 locations = array.array(format)
19 locations.fromstring(data)
21 locations.byteswap()
24 for i in range(len(locations)):
25 l.append(locations[i] * 2)
26 locations = l
27 if len(locations) < (ttFont['maxp'].numGlyphs + 1):
28 warnings.warn("corrupt 'loca' table, or wrong numGlyphs in 'maxp': %d %d" % (len(locations) - 1, ttFont['maxp'].numGlyphs))
29 self.locations = locations
[all...]
H A DE_B_L_C_.py406 # Remove any of the glyph locations and names that are flagged as skipped.
415 dataPairs = list(filter(isValidLocation, zip(self.names, self.locations)))
416 self.names, self.locations = list(map(list, zip(*dataPairs)))
438 self.locations = list(zip(modifiedOffsets, modifiedOffsets[1:]))
446 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]):
453 # Run a simple algorithm to add skip glyphs to the data locations at
456 locQueue = deque(self.locations)
466 # Now that all the locations are collected, pack them appropriately into
470 # Image data offset must be less than or equal to the minimum of locations
[all...]
/external/v8/src/compiler/
H A Dlinkage-impl.h18 static void AddReturnLocations(LocationSignature::Builder* locations) { argument
19 DCHECK(locations->return_count_ <= 2);
20 if (locations->return_count_ > 0) {
21 locations->AddReturn(regloc(LinkageTraits::ReturnValueReg()));
23 if (locations->return_count_ > 1) {
24 locations->AddReturn(regloc(LinkageTraits::ReturnValue2Reg()));
35 LocationSignature::Builder locations(zone, return_count, parameter_count);
39 AddReturnLocations(&locations);
47 locations.AddParam(stackloc(spill_slot_index));
51 locations
[all...]
/external/jmonkeyengine/engine/src/core/checkers/quals/
H A DDefaultQualifier.java20 * 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};
/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 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));
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));
/external/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp122 /// Numbered locations referenced by locmap.
123 SmallVector<MachineOperand, 4> locations; member in class:__anon10422::UserValue
190 // For register locations we dont care about use/def and other flags.
191 for (unsigned i = 0, e = locations.size(); i != e; ++i)
192 if (locations[i].isReg() &&
193 locations[i].getReg() == LocMO.getReg() &&
194 locations[i].getSubReg() == LocMO.getSubReg())
197 for (unsigned i = 0, e = locations.size(); i != e; ++i)
198 if (LocMO.isIdenticalTo(locations[i]))
200 locations
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java93 StackTraceElement locations[]=dummyException.getStackTrace();
97 if( locations!=null && locations.length >2 ) {
98 StackTraceElement caller=locations[2];
/external/libnl/lib/route/
H A Dpktloc_grammar.l16 %option bison-locations
H A Dpktloc_syntax.y9 %locations
/external/iproute2/tc/
H A Demp_ematch.y9 %locations
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DELF_x64-64_PIC_relocations.s5 # Test that we can load this code twice at memory locations more than 2GB apart
/external/bison/data/
H A Dglr.cc39 # 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/
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/libpng/contrib/gregbook/
H A Dmakevms.com8 $! Set locations where zlib and libpng sources live.
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAToDFAConverter.java1543 Set<Token> locations = altToLocationsReachableWithoutPredicate.get(altI);
1544 if ( locations==null ) {
1545 locations = new HashSet<Token>();
1546 altToLocationsReachableWithoutPredicate.put(altI, locations);
1548 locations.add(s.associatedASTNode.token);
1613 Set<Token> locations = altToLocationsReachableWithoutPredicate.get(altI);
1614 if ( locations==null ) {
1615 locations = new HashSet<Token>();
1616 altToLocationsReachableWithoutPredicate.put(altI, locations);
1618 locations
[all...]
/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="/6.0. ...
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l64 %option bison-bridge bison-locations reentrant noyywrap
/external/parameter-framework/support/android/
H A Dbuild_pfw_settings.mk40 # The parameter-framework binding module is installed on these locations on
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DViewLoader.java140 public void setLayoutQualifierSearchPath(String... locations) { argument
141 qualifierSearchPath = Arrays.asList(locations);
/external/v8/src/
H A Ddebug-debugger.js322 var locations = [];
324 locations.push(this.break_points_[i].actual_location);
326 return locations;
899 var locations = this.breakLocations(f, opt_position_alignment);
900 if (!locations) return source;
901 locations.sort(function(x, y) { return x - y; });
905 for (var i = 0; i < locations.length; i++) {
906 pos = locations[i] - offset;

Completed in 747 milliseconds

1234