Home
last modified time | relevance | path

Searched refs:locations (Results 1 – 25 of 192) sorted by relevance

12345678

/external/llvm/lib/CodeGen/
DLiveDebugVariables.cpp117 SmallVector<MachineOperand, 4> locations; member in __anon91ced82a0211::UserValue
182 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo()
183 if (locations[i].isReg() && in getLocationNo()
184 locations[i].getReg() == LocMO.getReg() && in getLocationNo()
185 locations[i].getSubReg() == LocMO.getSubReg()) in getLocationNo()
188 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo()
189 if (LocMO.isIdenticalTo(locations[i])) in getLocationNo()
191 locations.push_back(LocMO); in getLocationNo()
193 locations.back().clearParent(); in getLocationNo()
195 if (locations.back().isReg()) in getLocationNo()
[all …]
/external/chromium/chrome/browser/ui/web_applications/
Dweb_app_ui.cc172 } locations[] = { in CheckExistingShortcuts() local
191 for (int i = 0; i < arraysize(locations); ++i) { in CheckExistingShortcuts()
192 locations[i].use_this_location = false; in CheckExistingShortcuts()
195 if (!PathService::Get(locations[i].location_id, &path)) { in CheckExistingShortcuts()
200 if (locations[i].sub_dir != NULL) in CheckExistingShortcuts()
201 path = path.Append(locations[i].sub_dir); in CheckExistingShortcuts()
206 locations[i].use_this_location = true; in CheckExistingShortcuts()
/external/skia/src/gpu/gl/
DGrGLProgram.cpp1316 StageUniLocations& locations = programData->fUniLocations.fStages[s]; in getUniformLocationsAndInitCache() local
1318 if (kUseUniform == locations.fTextureMatrixUni) { in getUniformLocationsAndInitCache()
1321 GL_CALL_RET(locations.fTextureMatrixUni, in getUniformLocationsAndInitCache()
1323 GrAssert(kUnusedUniform != locations.fTextureMatrixUni); in getUniformLocationsAndInitCache()
1326 if (kUseUniform == locations.fSamplerUni) { in getUniformLocationsAndInitCache()
1329 GL_CALL_RET(locations.fSamplerUni, in getUniformLocationsAndInitCache()
1331 GrAssert(kUnusedUniform != locations.fSamplerUni); in getUniformLocationsAndInitCache()
1334 if (kUseUniform == locations.fNormalizedTexelSizeUni) { in getUniformLocationsAndInitCache()
1337 GL_CALL_RET(locations.fNormalizedTexelSizeUni, in getUniformLocationsAndInitCache()
1339 GrAssert(kUnusedUniform != locations.fNormalizedTexelSizeUni); in getUniformLocationsAndInitCache()
[all …]
/external/bison/tests/
Dcxx-type.at412 AT_SETUP([GLR: Resolve ambiguity, impure, no locations])
419 AT_SETUP([GLR: Resolve ambiguity, impure, locations])
420 _AT_TEST_GLR_CXXTYPES([%locations],[%dprec 1],[%dprec 2])
425 AT_SETUP([GLR: Resolve ambiguity, pure, no locations])
432 AT_SETUP([GLR: Resolve ambiguity, pure, locations])
433 _AT_TEST_GLR_CXXTYPES([%pure-parser %locations],
439 AT_SETUP([GLR: Merge conflicting parses, impure, no locations])
446 AT_SETUP([GLR: Merge conflicting parses, impure, locations])
447 _AT_TEST_GLR_CXXTYPES([%locations],
453 AT_SETUP([GLR: Merge conflicting parses, pure, no locations])
[all …]
Dcalc.at426 # 3. If locations are not used, remove them.
553 AT_CHECK_CALC_LALR([%locations])
559 AT_CHECK_CALC_LALR([%pure-parser %locations])
560 AT_CHECK_CALC_LALR([%error-verbose %locations])
562 AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
565 AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
567 AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %ver…
569 AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %ver…
589 AT_CHECK_CALC_GLR([%locations])
595 AT_CHECK_CALC_GLR([%pure-parser %locations])
[all …]
Dlocal.at58 [m4_bmatch([$3], [%locations], [$1], [$2])])
62 [m4_bmatch([$3], [%locations.*%pure-parser\|%pure-parser.*%locations],
74 # yyerror always sees the locations (when activated), except if
/external/webkit/Source/WebCore/platform/graphics/cg/
DGradientCG.cpp88 Vector<CGFloat, cReservedStops> locations; in platformGradient() local
89 locations.reserveCapacity(m_stops.size()); in platformGradient()
97 locations.uncheckedAppend(m_stops[i].stop); in platformGradient()
100 …teWithColorComponents(deviceRGBColorSpaceRef(), colorComponents.data(), locations.data(), m_stops.… in platformGradient()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
DPerspectiveLodCalculator.java77 …public boolean calculateLod(List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates… in calculateLod() argument
78 return calculateLod(patch, locations, updates); in calculateLod()
81 …public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, U… in calculateLod() argument
97 float distance = patchPos.distance(locations.get(0)); in calculateLod()
DDistanceLodCalculator.java65 …public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, U… in calculateLod() argument
66 float distance = getCenterLocation(terrainPatch).distance(locations.get(0)); in calculateLod()
DLodCalculator.java50 …public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String,Up… in calculateLod() argument
/external/apache-http/src/org/apache/commons/logging/impl/
DJdk14Logger.java88 StackTraceElement locations[]=dummyException.getStackTrace(); in log() local
92 if( locations!=null && locations.length >2 ) { in log()
93 StackTraceElement caller=locations[2]; in log()
/external/chromium/chrome/browser/web_applications/
Dweb_app.cc243 } locations[] = { in CreateShortcut() local
264 for (int i = 0; i < arraysize(locations); ++i) { in CreateShortcut()
265 if (locations[i].use_this_location) { in CreateShortcut()
269 if (locations[i].location_id == base::PATH_START) in CreateShortcut()
272 if (!PathService::Get(locations[i].location_id, &path)) { in CreateShortcut()
277 if (locations[i].sub_dir != NULL) in CreateShortcut()
278 path = path.Append(locations[i].sub_dir); in CreateShortcut()
/external/valgrind/tsan/
Dsuppressions.cc49 vector<Location> locations; member
185 trace->locations.push_back(location); in ParseStackTraceLine()
194 trace->locations.push_back(location); in ParseStackTraceLine()
243 trace->locations.push_back(location); in ParseStackTraceLine()
379 const int tmpl_size = ctx.tmpl->locations.size(); in MatchStackTraceRecursive()
381 Location& location = ctx.tmpl->locations[tmpl_index]; in MatchStackTraceRecursive()
/external/webkit/Source/WebCore/bindings/v8/
DDebuggerScript.js103 var locations = Debug.findBreakPointActualLocations(breakId);
104 if (!locations.length)
106 args.lineNumber = locations[0].line;
107 args.columnNumber = locations[0].column;
/external/emma/
Dwork.dirs.properties9 # ---- root locations created by the build:
24 # ---- module-specific locations created by the build:
/external/qemu/android/skin/
Dfile.h82 SkinLocation* locations; member
87 SkinLocation* __loc = (layout)->locations; \
Dfile.c424 layout->locations = NULL; in skin_layout_free()
526 ptail = &layout->locations; in skin_layout_create_from_v2()
546 if (layout->locations == NULL) in skin_layout_create_from_v2()
622 layout->locations = location; in skin_file_load_from_v1()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
DTerrainQuad.java256 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 …]
DTerrainGrid.java284 public void update(List<Vector3f> locations, LodCalculator lodCalculator) { in update() argument
289 Vector3f cam = locations.isEmpty() ? Vector3f.ZERO.clone() : locations.get(0); in update()
304 super.update(locations, lodCalculator); in update()
/external/oprofile/events/arm/armv6/
Devents11 …t:0x09 counters:0,1 um:zero minimum:500 name:DCACHE_ACCESS : data cache access, cacheable locations
12 …ent:0x0a counters:0,1 um:zero minimum:500 name:DCACHE_ACCESS_ALL : data cache access, all locations
/external/jmonkeyengine/engine/src/core/checkers/quals/
DDefaultQualifier.java43 DefaultLocation[] locations() default {DefaultLocation.ALL}; in locations() method
/external/webkit/Source/WebCore/inspector/front-end/
DDebuggerModel.js87 function didSetBreakpoint(error, breakpointId, locations) argument
90 callback(error ? null : breakpointId, locations);
/external/wpa_supplicant_8/hostapd/logwatch/
DREADME4 These files can be installed by copying them to following locations:
/external/bison/data/
Dglr.cc40 # The locations
43 # the locations in a (C++) union, the position and location classes
49 # We require a pure interface using locations.
/external/iproute2/tc/
Demp_ematch.y9 %locations

12345678