/development/apps/SettingInjectorSample/res/xml/ |
my_injected_location_setting.xml | 3 <injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
slow_injected_location_setting.xml | 3 <injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
updating_injected_location_setting.xml | 3 <injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/ |
Attraction.java | 34 public LatLng location; field in class:Attraction 44 Uri secondaryImageUrl, LatLng location, String city) { 50 this.location = location;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/ |
Breakpoint.java | 50 * @param location Location within the method 52 public Breakpoint(String clazz, String method, int location) { 55 index = location;
|
/external/autotest/client/site_tests/power_Consumption/ |
echo.html | 11 h.innerText = decodeURIComponent(document.location.search.substring(1));
|
/external/bison/src/ |
named-ref.h | 23 #include "location.h" 33 /* Location of the symbolic name. Not including brackets. */ 34 location loc; 38 named_ref *named_ref_new (uniqstr id, location loc);
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/ |
location_info_mixin.js | 25 if (closingToken.location) { 34 start: closingToken.location.start, 35 end: closingToken.location.end 39 loc.end = closingToken.location.end; 43 //NOTE: patch open elements stack, so we can assign end location for the elements 92 //their end location explicitly. 118 node.__location = token.location; 127 //So we will use token location stored in this methods for the element. 134 this.attachableElementLocation = token.location; 139 this.attachableElementLocation = token.location; [all...] |
/external/clang/test/Analysis/ |
lvalue.cpp | 6 return x += y; // Should bind a location to 'x += y'. No crash.
|
/external/clang/test/CodeGenCXX/ |
constructor-convert.cpp | 14 error("cl::location(x) specified more than once!");
|
/external/clang/test/SemaCXX/ |
member-location.cpp | 2 // PR4103: Make sure we have a location for the error
|
/external/compiler-rt/lib/msan/ |
msan_blacklist.txt | 2 # functions or sources. Use with care. You may set location of blacklist
|
/external/curl/tests/data/ |
test1413 | 14 Location: moo.html/14130002#fragmentpart
21 Location: this should be ignored
29 Location: moo.html/14130002#fragmentpart
34 Location: this should be ignored
|
test42 | 14 Location: ../m o o.html/420002
21 Location: this should be ignored
29 Location: ../m o o.html/420002
34 Location: this should be ignored
|
test49 | 14 Location: ../moo.html/490002 21 Location: this should be ignored 29 Location: ../moo.html/490002 34 Location: this should be ignored
|
test50 | 14 Location: ../../moo.html/500002 21 Location: this should be ignored 29 Location: ../../moo.html/500002 34 Location: this should be ignored
|
test52 | 14 Location: ./520002 21 Location: this should be ignored 29 Location: ./520002 34 Location: this should be ignored
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkBuilderUtil.hpp | 109 class Location 112 static inline Location binding (deUint32 binding_) 114 return Location(binding_, 0u); 116 static inline Location bindingArrayElement (deUint32 binding_, deUint32 arrayElement) 118 return Location(binding_, arrayElement); 123 inline Location (deUint32 binding_, deUint32 arrayElement) 159 const Location& destLocation, 167 const Location& destLocation, 175 const Location& destLocation, 183 const Location& destLocation [all...] |
/external/dnsmasq/contrib/dns-loc/ |
README | 4 entries in order to assign location information to dns records
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/data/21/fragment/ |
fragment.xml | 11 <location path="src" />
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/data/21/plugin/ |
plugin.xml | 9 <location path="src" />
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
PluginFlyoutPreferences.java | 47 public void initializeDefaults(int location, int state, int width) { 48 m_store.setDefault(m_dockLocationKey, location); 70 public void setDockLocation(int location) { 71 m_store.setValue(m_dockLocationKey, location);
|
/external/libchrome/base/ |
pending_task.h | 12 #include "base/location.h" 21 PendingTask(const tracked_objects::Location& posted_from, 23 PendingTask(const tracked_objects::Location& posted_from, 36 tracked_objects::Location posted_from;
|
task_runner.cc | 23 bool PostTask(const tracked_objects::Location& from_here, 36 const tracked_objects::Location& from_here, 43 bool TaskRunner::PostTask(const tracked_objects::Location& from_here, 49 const tracked_objects::Location& from_here,
|
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/ |
JglfwGL20.java | 492 public void glGetUniformfv (int program, int location, FloatBuffer params) {
493 GL.glGetUniformfv(program, location, params, getPosition(params));
496 public void glGetUniformiv (int program, int location, IntBuffer params) {
497 GL.glGetUniformiv(program, location, params, getPosition(params));
568 public void glUniform1f (int location, float x) {
569 GL.glUniform1f(location, x);
572 public void glUniform1fv (int location, int count, FloatBuffer v) {
573 GL.glUniform1fv(location, count, v, getPosition(v));
576 public void glUniform1fv (int location, int count, float[] v, int offset) {
577 glUniform1fv(location, count, toFloatBuffer(v, offset, count)); [all...] |