Searched refs:location (Results 1 - 25 of 799) 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/bison/src/
H A Dreader.h24 # include "location.h"
35 location type_declaration_location;
45 void grammar_start_symbol_set (symbol *sym, location loc);
46 void grammar_current_rule_begin (symbol *lhs, location loc,
48 void grammar_current_rule_end (location loc);
50 void grammar_current_rule_prec_set (symbol *precsym, location loc);
51 void grammar_current_rule_dprec_set (int dprec, location loc);
52 void grammar_current_rule_merge_set (uniqstr name, location loc);
53 void grammar_current_rule_symbol_append (symbol *sym, location loc,
55 void grammar_current_rule_action_append (const char *action, location lo
[all...]
H A Dcomplain.h22 # include "location.h"
44 void warn_at (location loc, char const *format, ...)
50 void warn_at_indent (location loc, unsigned *indent,
59 void complain_at (location loc, char const *format, ...)
65 void complain_at_indent (location loc, unsigned *indent,
72 void yacc_at (location loc, char const *format, ...)
78 void midrule_value_at (location loc, char const *format, ...)
86 void fatal_at (location loc, char const *format, ...)
H A Dsymlist.h24 # include "location.h"
51 location location; member in struct:symbol_list
53 /* Proper location of the symbol, not all the rule */
54 location sym_loc;
75 location merger_declaration_location;
86 symbol_list *symbol_list_sym_new (symbol *sym, location loc);
89 symbol_list *symbol_list_type_new (uniqstr type_name, location loc);
92 symbol_list *symbol_list_default_tagged_new (location loc);
94 symbol_list *symbol_list_default_tagless_new (location lo
[all...]
H A Dlocation.h80 /* A location, that is, a region of source code. */
83 /* Boundary just before the location starts. */
86 /* Boundary just after the location ends. */
89 } location; typedef in typeref:struct:__anon378
91 #define GRAM_LTYPE location
94 extern location const empty_location;
98 void location_compute (location *loc,
101 /* Print location to file. Return number of actually printed
103 unsigned location_print (FILE *out, location loc);
109 /* Output to OUT the line and caret corresponding to location LO
[all...]
H A Dnamed-ref.h23 #include "location.h"
34 location loc;
38 named_ref *named_ref_new (uniqstr id, location loc);
H A Dscan-code.h23 # include "location.h"
54 location location; member in struct:code_props
104 location code_loc);
119 location code_loc);
139 location code_loc, struct symbol_list *rule,
/external/mockito/src/org/mockito/internal/debugging/
H A DLocalized.java13 private final Location location; field in class:Localized
17 location = new LocationImpl();
25 return location;
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderVariable.java40 // if -2, location not known
43 protected int location = -2; field in class:ShaderVariable
67 public void setLocation(int location){ argument
68 this.location = location;
72 return location;
/external/elfutils/src/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/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/bison/examples/calc++/
H A Dlocation.hh34 ** \file ../../../../examples/calc++/location.hh
35 ** Define the yy::location class.
45 /* Line 166 of location.cc */
46 #line 47 "../../../../examples/calc++/location.hh"
48 /// Abstract a location.
49 class location class in namespace:yy
53 /// Construct a location from \a b to \a e.
54 location (const position& b, const position& e) function in class:yy::location
60 /// Construct a 0-width location in \a p.
61 explicit location (cons function in class:yy::location
68 explicit location (std::string* f, function in class:yy::location
[all...]
/external/v8/test/mjsunit/
H A Ddebug-sourceinfo.js108 var location = script.locationFromPosition(p);
110 assertEquals(position + 1, location.position);
111 if (line == location.line) {
112 assertEquals(column + 1, location.column);
114 assertEquals(line + 1, location.line);
115 assertEquals(0, location.column);
118 assertEquals(0, location.position);
119 assertEquals(0, location.line);
120 assertEquals(0, location.column);
123 // Remember the location
266 var location; variable
[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/v8/test/cctest/
H A Dtest-global-handles.cc106 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
107 Object** g2_objects[] = { g2s1.location(), g2s2.location() };
116 skippable_objects.Add(*g1s1.location());
117 skippable_objects.Add(*g1s2.location());
118 skippable_objects.Add(*g2s1.location());
119 skippable_objects.Add(*g2s2.location());
125 DCHECK(can_skip_called_objects.Contains(*g1s1.location()));
126 DCHECK(can_skip_called_objects.Contains(*g1s2.location()));
[all...]
/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/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DAndroid22Workaround.java6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){ argument
7 GLES20.glVertexAttribPointer(location,
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DListener.java40 private Vector3f location; field in class:Listener
47 location = new Vector3f();
53 location = source.location.clone();
74 return location;
97 public void setLocation(Vector3f location) { argument
98 this.location.set(location);
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DDataEntryUrnBox.java32 private String location; field in class:DataEntryUrnBox
44 return location;
48 return Utf8.utf8StringLengthInBytes(name) + 1 + Utf8.utf8StringLengthInBytes(location) + 1;
54 location = IsoTypeReader.readString(content);
62 byteBuffer.put(Utf8.convert(location));
67 return "DataEntryUrlBox[name=" + getName() + ";location=" + getLocation() + "]";
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPProxyTestCase.java37 private final Location location; field in class:JDWPProxyTestCase.EventContext
39 public EventContext(long threadId, long frameId, Location location) { argument
42 this.location = location;
54 return location;
89 Location location = reply.getNextValueAsLocation();
91 String className = getClassSignature(location.classID);
92 String methodName = getMethodName(location.classID, location.methodID);
93 logWriter.println("Frame #" + i + ": " + className + "." + methodName + "@" + location
[all...]

Completed in 1560 milliseconds

1234567891011>>