HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 376 - 400 of 4231) sorted by null

<<11121314151617181920>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationListenerActivity.java 1 package com.android.cts.verifier.location;
5 import android.location.Location;
6 import android.location.LocationListener;
7 import android.location.LocationManager;
19 // Primary -> managed intent: request to goto the location settings page and listen to updates.
21 "com.android.cts.verifier.location.SET_LOCATION_AND_CHECK";
53 Log.d(getLogTag(), "Exit location settings:OK");
81 public void onLocationChanged(Location location) {
    [all...]
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.ba-hashchange.min.js 9 (function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this)
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
MovedContextHandler.java 35 * location. Requests are redirected (either to a fixed URL or to a
113 StringBuilder location = URIUtil.hasScheme(path)?new StringBuilder():baseRequest.getRootURL(); local
115 location.append(path);
118 location.append('?');
121 location.append(q);
124 response.setHeader(HttpHeaders.LOCATION,location.toString());
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionProvider.java 17 package com.android.location.provider;
21 import android.hardware.location.IActivityRecognitionHardware;
22 import android.hardware.location.IActivityRecognitionHardwareSink;
46 // android.hardware.location.ActivityRecognitionHardware
106 public void onActivityChanged(android.hardware.location.ActivityChangedEvent event) {
117 for (android.hardware.location.ActivityRecognitionEvent reportingEvent
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
VertexBufferObject.java 198 final int location = shader.getAttributeLocation(attribute.alias); local
199 if (location < 0) continue;
200 shader.enableVertexAttribute(location);
202 shader.setVertexAttribute(location, attribute.numComponents, attribute.type, attribute.normalized,
209 final int location = locations[i]; local
210 if (location < 0) continue;
211 shader.enableVertexAttribute(location);
213 shader.setVertexAttribute(location, attribute.numComponents, attribute.type, attribute.normalized,
238 final int location = locations[i]; local
239 if (location >= 0) shader.disableVertexAttribute(location);
    [all...]
VertexBufferObjectSubData.java 172 final int location = shader.getAttributeLocation(attribute.alias); local
173 if (location < 0) continue;
174 shader.enableVertexAttribute(location);
176 shader.setVertexAttribute(location, attribute.numComponents, attribute.type, attribute.normalized, attributes.vertexSize,
182 final int location = locations[i]; local
183 if (location < 0) continue;
184 shader.enableVertexAttribute(location);
186 shader.setVertexAttribute(location, attribute.numComponents, attribute.type, attribute.normalized, attributes.vertexSize,
211 final int location = locations[i]; local
212 if (location >= 0) shader.disableVertexAttribute(location);
    [all...]
  /external/mesa3d/src/mesa/main/
shader_query.cpp 110 || var->location == -1)
173 || var->location == -1
174 || var->location < VERT_ATTRIB_GENERIC0)
178 return var->location - VERT_ATTRIB_GENERIC0;
201 || var->location == -1)
227 || var->location == -1)
337 || var->location == -1
338 || var->location < FRAG_RESULT_DATA0)
393 || var->location == -1
394 || var->location < FRAG_RESULT_DATA0
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
TestLocationManager.java 17 package android.location.cts;
20 import android.location.GnssMeasurementsEvent;
21 import android.location.GnssNavigationMessage;
22 import android.location.GnssStatus;
23 import android.location.GpsStatus;
24 import android.location.LocationListener;
25 import android.location.LocationManager;
53 Log.i(TAG, "Remove Location updates.");
58 * See {@link android.location.LocationManager#registerGnssMeasurementsCallback
75 * See {@link android.location.LocationManager#registerGnssMeasurementsCallback(GnssMeasurementsEvent.Callback callback)
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/instr/
instrTask.java 58 + ": instrumentation path must be specified", location).fillInStackTrace ();
62 + ": output directory must be specified for '" + m_outMode + "' output mode", location).fillInStackTrace ();
112 + ": outdir|destdir attribute already set", location).fillInStackTrace ();
121 + ": outdir|destdir attribute already set", location).fillInStackTrace ();
133 + ": metadata file attribute already set", location).fillInStackTrace ();
142 + ": metadata file attribute already set", location).fillInStackTrace ();
162 + ": invalid output mode: " + mode.getValue (), location).fillInStackTrace ();
  /external/protobuf/src/google/protobuf/compiler/java/
java_doc_comment.cc 106 io::Printer* printer, const SourceLocation& location) {
107 string comments = location.leading_comments.empty() ?
108 location.trailing_comments : location.leading_comments;
143 SourceLocation location; local
144 if (descriptor->GetSourceLocation(&location)) {
145 WriteDocCommentBodyForLocation(printer, location);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
interaction_based.hpp 60 new ( ::boost::itest::location( BOOST_TEST_L(__FILE__), __LINE__ ) ) type_name
175 // ************** location ************** //
178 struct location { struct in namespace:boost::itest
179 location( const_string file, std::size_t line ) function in struct:boost::itest::location
209 operator new( std::size_t s, ::boost::itest::location const& l )
224 operator new[]( std::size_t s, ::boost::itest::location const& l )
239 operator delete( void* p, ::boost::itest::location const& )
249 operator delete[]( void* p, ::boost::itest::location const& )
  /packages/apps/Camera2/src/com/android/camera/one/
OneCamera.java 20 import android.location.Location;
272 /** The location of this capture. */
273 public final Location location; field in class:OneCamera.CaptureParameters
278 public CaptureParameters(String title, int orientation, Location location, File
282 this.location = location;
339 public PhotoCaptureParameters(String title, int orientation, Location location, Fil
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduPart.java 225 * Set Content-Location value.
232 throw new NullPointerException("null content-location");
239 * Get Content-Location value.
369 // Assumption: At least one of the content-location / name / filename
372 byte[] location = (byte[]) mPartHeader.get(P_NAME);
373 if (null == location) {
374 location = (byte[]) mPartHeader.get(P_FILENAME);
376 if (null == location) {
377 location = (byte[]) mPartHeader.get(P_CONTENT_LOCATION);
381 if (null == location) {
    [all...]
  /external/skia/src/gpu/gl/
GrGLNoOpInterface.h 203 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0);
205 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0);
207 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1fv(GrGLint location,
211 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1iv(GrGLint location,
215 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2f(GrGLint location,
219 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2i(GrGLint location, GrGLint v0, GrGLint v1);
221 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2fv(GrGLint location,
225 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2iv(GrGLint location,
229 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform3f(GrGLint location,
234 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform3i(GrGLint location,
    [all...]
  /external/v8/test/cctest/heap/
test-mark-compact.cc 255 g1s1.location(), reinterpret_cast<void*>(&g1s1_and_id),
259 g1s2.location(), reinterpret_cast<void*>(&g1s2_and_id),
263 g1c1.location(), reinterpret_cast<void*>(&g1c1_and_id),
274 g2s1.location(), reinterpret_cast<void*>(&g2s1_and_id),
278 g2s2.location(), reinterpret_cast<void*>(&g2s2_and_id),
282 g2c1.location(), reinterpret_cast<void*>(&g2c1_and_id),
292 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
293 Object** g2_objects[] = { g2s1.location(), g2s2.location() };
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 263 String location = m.group(1); local
266 if (checkAndMark(location, lineStr, msg, osRoot, project,
276 String location = m.group(1); local
290 if (checkAndMark(location, null, msg, osRoot, project,
310 String location = m.group(1); local
314 if (checkAndMark(location, lineStr, msg, osRoot, project,
323 String location = m.group(1); local
328 if (checkAndMark(location, lineStr, msg, osRoot, project,
340 String location = m.group(1); local
352 if (checkAndMark(location, lineStr, msg, osRoot, project
363 String location = m.group(1); local
379 String location = m.group(1); local
395 String location = m.group(2); local
428 String location = m.group(1); local
447 String location = m.group(2); local
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtGL20Debug.java 656 public void glGetUniformfv (int program, int location, FloatBuffer params) {
658 super.glGetUniformfv(program, location, params);
663 public void glGetUniformiv (int program, int location, IntBuffer params) {
665 super.glGetUniformiv(program, location, params);
839 public void glUniform1f (int location, float x) {
841 super.glUniform1f(location, x);
846 public void glUniform1fv (int location, int count, FloatBuffer v) {
848 super.glUniform1fv(location, count, v);
853 public void glUniform1i (int location, int x) {
855 super.glUniform1i(location, x);
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES20.spec 76 void glGetUniformfv ( GLuint program, GLint location, GLfloat *params )
77 void glGetUniformiv ( GLuint program, GLint location, GLint *params )
113 void glUniform1f ( GLint location, GLfloat x )
114 void glUniform1fv ( GLint location, GLsizei count, const GLfloat *v )
115 void glUniform1i ( GLint location, GLint x )
116 void glUniform1iv ( GLint location, GLsizei count, const GLint *v )
117 void glUniform2f ( GLint location, GLfloat x, GLfloat y )
118 void glUniform2fv ( GLint location, GLsizei count, const GLfloat *v )
119 void glUniform2i ( GLint location, GLint x, GLint y )
120 void glUniform2iv ( GLint location, GLsizei count, const GLint *v
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.console_1.0.200.v20100601.jar 
  /external/google-benchmark/
mingw.py 114 def unpack(archive, location, log = EmptyLogger()):
120 cmd = [sevenzip, 'x', archive, '-o' + location, '-y']
125 def download(url, location, log = EmptyLogger()):
131 log.debug(' - location: %s', location)
148 os.makedirs(location)
150 if e.errno == errno.EEXIST and os.path.isdir(location):
155 archive = os.path.join(location, filename)
162 unpack(archive, location, log = log)
165 possible = os.path.join(location, 'mingw64'
    [all...]
  /external/v8/src/compiler/
instruction-selector-impl.h 71 InstructionOperand DefineAsLocation(Node* node, LinkageLocation location,
73 return Define(node, ToUnallocatedOperand(location, rep, GetVReg(node)));
132 InstructionOperand UseExplicit(LinkageLocation location) {
134 if (location.IsRegister()) {
136 location.AsRegister());
139 location.GetLocation());
147 InstructionOperand UseLocation(Node* node, LinkageLocation location,
149 return Use(node, ToUnallocatedOperand(location, rep, GetVReg(node)));
188 InstructionOperand TempLocation(LinkageLocation location,
190 return ToUnallocatedOperand(location, rep
    [all...]
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 74 public native void glUniformMatrix2x3fv(int location, int count, boolean transpose, FloatBuffer value);
76 public native void glUniformMatrix3x2fv(int location, int count, boolean transpose, FloatBuffer value);
78 public native void glUniformMatrix2x4fv(int location, int count, boolean transpose, FloatBuffer value);
80 public native void glUniformMatrix4x2fv(int location, int count, boolean transpose, FloatBuffer value);
82 public native void glUniformMatrix3x4fv(int location, int count, boolean transpose, FloatBuffer value);
84 public native void glUniformMatrix4x3fv(int location, int count, boolean transpose, FloatBuffer value);
126 public native void glGetUniformuiv(int program, int location, IntBuffer params);
130 public native void glUniform1uiv(int location, int count, IntBuffer value);
132 public native void glUniform3uiv(int location, int count, IntBuffer value);
134 public native void glUniform4uiv(int location, int count, IntBuffer value);
    [all...]
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 58 public native void glUniformMatrix2x3fv(int location, int count, boolean transpose, FloatBuffer value);
60 public native void glUniformMatrix3x2fv(int location, int count, boolean transpose, FloatBuffer value);
62 public native void glUniformMatrix2x4fv(int location, int count, boolean transpose, FloatBuffer value);
64 public native void glUniformMatrix4x2fv(int location, int count, boolean transpose, FloatBuffer value);
66 public native void glUniformMatrix3x4fv(int location, int count, boolean transpose, FloatBuffer value);
68 public native void glUniformMatrix4x3fv(int location, int count, boolean transpose, FloatBuffer value);
110 public native void glGetUniformuiv(int program, int location, IntBuffer params);
114 public native void glUniform1uiv(int location, int count, IntBuffer value);
116 public native void glUniform3uiv(int location, int count, IntBuffer value);
118 public native void glUniform4uiv(int location, int count, IntBuffer value)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
ExifUtil.java 20 import android.location.Location;
55 * @param location optionally a location that should be added to the EXIF.
59 Optional<Location> location) {
69 if (location.isPresent()) {
70 addLocationToExif(location.get());
75 * Adds the given location to the EXIF object.
77 * @param location The location to add
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderWatcher.java 111 final int location = insertAtNextEmptyLocation(uri); local
112 LogUtils.d(LOG_TAG, "Watching %s, at position %d.", uri, location);
118 lm.initLoader(getLoaderFromPosition(location), args, mUnreadCallback);
123 * location.
124 * @return location where the URI was inserted.
128 int location = -1; local
133 location = i;
138 if (location < 0) {
140 location = mUris.size();
141 mUris.add(location, newElement)
    [all...]

Completed in 2357 milliseconds

<<11121314151617181920>>