Searched refs:location (Results 1 - 25 of 1407) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DLabel.java38 @Nullable MethodLocation location; field in class:Label
43 Label(MethodLocation location) { argument
44 this.location = location;
53 if (location == null) {
54 throw new IllegalStateException("Cannot get the location of a label that hasn't been placed yet.");
56 return location;
60 return location != null;
H A DBuilderDebugItem.java39 @Nullable MethodLocation location; field in class:BuilderDebugItem
45 if (location == null) {
49 return location.getCodeAddress();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg36 location(file, line, column) ::= "<file>:<line>:<column>:"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
H A Dgnu.stg36 location(file, line, column) ::= "<file>:<line>:"
40 report(location, message, type) ::= "<location> <type>: <message>"
H A Dvs2005.stg36 location(file, line, column) ::= "<file>(<line>,<column>)"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
/external/annotation-tools/scene-lib/src/annotations/el/
H A DInnerTypeLocation.java16 * An {@link InnerTypeLocation} holds the location information for an
17 * inner type (namely the location string) inside its {@link ATypeElement}.
28 * The location numbers of the inner type as defined in the extended
29 * annotation specification. For example, the location numbers of &#064;X
33 public final List<TypePathEntry> location; field in class:InnerTypeLocation
36 * Constructs an {@link InnerTypeLocation} from the given location string,
38 * {@link ATypeElement} with zero-length location string is the
41 public InnerTypeLocation(List<TypePathEntry> location) { argument
42 this.location = Collections.unmodifiableList(
43 new ArrayList<TypePathEntry>(location));
[all...]
/external/libchrome/base/profiler/
H A Dscoped_tracker.cc22 ScopedTracker::ScopedTracker(const Location& location) argument
23 : scoped_profile_(location, g_scoped_profile_mode) {
H A Dscoped_tracker.h15 #include "base/location.h"
41 ScopedTracker(const Location& location);
47 // Augments a |callback| with provided |location|. This is useful for
54 const Location& location,
56 return base::Bind(&ScopedTracker::ExecuteAndTrackCallback<P1>, location,
61 // Executes |callback|, augmenting it with provided |location|.
63 static void ExecuteAndTrackCallback(const Location& location, argument
66 ScopedTracker tracking_profile(location);
53 TrackCallback( const Location& location, const base::Callback<void(P1)>& callback) argument
H A Dscoped_profile.h16 #include "base/location.h"
34 const ::tracked_objects::Location& location = \
37 COUNTER_BASED_VARIABLE_NAME_FOR_PROFILING(location.file_name()); \
39 location, ::tracked_objects::ScopedProfile::ENABLED)
44 const ::tracked_objects::Location& location = \
48 COUNTER_BASED_VARIABLE_NAME_FOR_PROFILING(location.file_name()); \
50 location, ::tracked_objects::ScopedProfile::ENABLED)
64 ScopedProfile(const Location& location, Mode mode);
/external/mockito/src/main/java/org/mockito/internal/debugging/
H A DLocalized.java13 private final Location location; field in class:Localized
17 location = new LocationImpl();
25 return location;
/external/parameter-framework/asio/include/asio/detail/
H A Dthrow_error.hpp26 const char* location);
35 const char* location)
38 do_throw_error(err, location);
34 throw_error(const asio::error_code& err, const char* location) argument
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dthrow_error.hpp26 const char* location);
35 const char* location)
38 do_throw_error(err, location);
34 throw_error(const asio::error_code& err, const char* location) argument
/external/pdfium/core/fxcrt/
H A Dautorestorer.h13 explicit AutoRestorer(T* location) argument
14 : m_Location(location), m_OldValue(*location) {}
/external/elfutils/tests/
H A Drun-funcretval.sh34 () fun_char: return value location: {0x50, 0}
35 () fun_short: return value location: {0x50, 0}
36 () fun_int: return value location: {0x50, 0}
37 () fun_ptr: return value location: {0x50, 0}
38 () fun_iptr: return value location: {0x50, 0}
39 () fun_long: return value location: {0x50, 0}
40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8}
41 () fun_large_struct1: return value location: {0x70, 0}
42 () fun_large_struct2: return value location: {0x70, 0}
43 () fun_float: return value location
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DLocationTest.java3 import android.location.Location;
4 import android.location.LocationManager;
17 private Location location; field in class:LocationTest
21 location = new Location(LocationManager.GPS_PROVIDER);
22 location.setTime(1);
23 location.setLatitude(2);
24 location.setLongitude(3);
25 location.setAccuracy(4);
26 location.setBearing(0.5f);
27 location
[all...]
/external/syslinux/gpxe/src/interface/efi/
H A Defi_pci.c37 unsigned long location ) {
40 EFIPCI_OFFSET ( location ) );
43 int efipci_read ( struct pci_device *pci, unsigned long location, argument
47 if ( ( efirc = efipci->Pci.Read ( efipci, EFIPCI_WIDTH ( location ),
48 efipci_address ( pci, location ), 1,
52 PCI_FUNC ( pci->devfn ), EFIPCI_OFFSET ( location ),
60 int efipci_write ( struct pci_device *pci, unsigned long location, argument
64 if ( ( efirc = efipci->Pci.Write ( efipci, EFIPCI_WIDTH ( location ),
65 efipci_address ( pci, location ), 1,
69 PCI_FUNC ( pci->devfn ), EFIPCI_OFFSET ( location ),
[all...]
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
H A DClassifier.java46 /** Optional location within the source image for the location of the recognized object. */
47 private RectF location; field in class:Classifier.Recognition
50 final String id, final String title, final Float confidence, final RectF location) {
54 this.location = location;
70 return new RectF(location);
73 public void setLocation(RectF location) { argument
74 this.location = location;
49 Recognition( final String id, final String title, final Float confidence, final RectF location) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DErrorManager.cs48 StackFrame location = GetLastNonErrorManagerCodeLocation(e);
49 string msg = "Exception " + e + "@" + location + ": " + error;
56 StackFrame location = GetLastNonErrorManagerCodeLocation(new Exception());
57 string msg = location + ": " + error;
63 /// Return first non ErrorManager code location for generating messages
79 StackFrame location = stackTrace.GetFrame(i);
81 return location;
/external/mockito/src/main/java/org/mockito/internal/matchers/
H A DLocalizedMatcher.java15 private final Location location; field in class:LocalizedMatcher
19 this.location = new LocationImpl();
23 return location;
/external/curl/docs/examples/
H A Dgetredirect.c33 char *location; local
56 res = curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &location);
58 if((res == CURLE_OK) && location) {
61 printf("Redirected to: %s\n", location);
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DClassFileDumper.java26 private final File location; field in class:ClassFileDumper
29 * Create a new dumper for the given location.
31 * @param location
35 ClassFileDumper(final String location) { argument
36 if (location == null) {
37 this.location = null;
39 this.location = new File(location);
45 * <code>null</code> location has been specified.
55 if (location !
[all...]
/external/vulkan-validation-layers/demos/
H A Dcube.frag26 layout (location = 0) in vec4 texcoord;
27 layout (location = 0) out vec4 uFragColor;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DBreakpoint.java50 * @param location Location within the method
52 public Breakpoint(String clazz, String method, int location) { argument
55 index = location;
/external/autotest/server/
H A Dinstallable_object.py21 def get(self, location):
26 saved in a temporary location on the LocalHost. That location
30 location: the path to the source material. This path
34 self.source_material= utils.get(location)
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
H A DClassFileDumperTest.java44 final File location = new File(folder.getRoot(), "classes");
45 final ClassFileDumper dumper = new ClassFileDumper(location.toString());
47 assertContents(location,
53 final File location = new File(folder.getRoot(), "classes");
54 final ClassFileDumper dumper = new ClassFileDumper(location.toString());
56 assertContents(location, "Main.aff06045a340cd62.class");
65 private void assertContents(File location, String filename) argument
67 InputStream in = new FileInputStream(new File(location, filename));

Completed in 615 milliseconds

1234567891011>>