Searched refs:location (Results 51 - 75 of 2162) sorted by relevance

1234567891011>>

/external/bison/src/
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,
H A Dsymtab.h30 # include "location.h"
60 /** The location of its first occurrence. */
61 location location; member in struct:symbol
71 /** Its \c \%type's location. */
72 location type_location;
90 location prec_location;
119 symbol *symbol_from_uniqstr (const uniqstr key, location loc);
122 symbol *symbol_get (const char *key, location loc);
127 symbol *dummy_symbol_get (location lo
[all...]
H A Dscan-gram.h35 # define GRAM_LEX_DECL int gram_lex (GRAM_STYPE *val, location *loc)
/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/lldb/examples/python/
H A Ddiagnose_nsstring.py8 def read_memory(process,location,size):
12 byte = process.ReadUnsignedFromMemory(x+location,1,error)
137 print >>result,"Explicit length location is at 0x%x - read value is %d\n" % (explicit_length_offset,explicit_length)
140 location = 2 * ptr_size + nsstring_address
141 location = process.ReadPointerFromMemory(location,error)
143 location = 3 * ptr_size + nsstring_address
145 location = 2 * ptr_size + nsstring_address
150 location += ptr_size
152 location
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dmisspelling.cc7 // |location|, and |length| instead of only misspelled text, because the
35 : location(0), length(0), hash(0), timestamp(base::Time::Now()) {
39 size_t location,
44 location(location),
60 result->SetInteger("misspelledStart", location);
71 if (location > context.length())
73 return context.substr(location, length);
38 Misspelling(const base::string16& context, size_t location, size_t length, const std::vector<base::string16>& suggestions, uint32 hash) argument
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateOutputs.cpp33 const int location = type.getLayoutQualifier().location; local
39 else if (location == -1)
45 OutputMap::iterator mapEntry = mOutputMap.find(location);
49 if (location + elementCount > mMaxDrawBuffers)
51 error(symbol->getLine(), "output location must be < MAX_DRAW_BUFFERS", name.c_str());
56 const int offsetLocation = location + elementIndex;
75 mSink.location(loc);
H A DInfoSink.cpp34 void TInfoSinkBase::location(int file, int line) { function in class:TInfoSinkBase
45 void TInfoSinkBase::location(const TSourceLoc& loc) { function in class:TInfoSinkBase
46 location(loc.first_file, loc.first_line);
51 location(loc);
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DReturnsSmartNulls.java49 final Location location = new LocationImpl();
50 return Mockito.mock(type, new ThrowsSmartNullPointer(invocation, location));
57 private final Location location; field in class:ReturnsSmartNulls.ThrowsSmartNullPointer
59 public ThrowsSmartNullPointer(InvocationOnMock unstubbedInvocation, Location location) { argument
61 this.location = location;
70 new Reporter().smartNullPointerException(unstubbedInvocation.toString(), location);
/external/chromium_org/chrome/browser/mac/
H A Dmac_startup_profiler.h38 // Record timestamp for the given location event.
39 void Profile(Location location);
47 // Returns the name of the histogram for the given location.
48 const std::string HistogramName(Location location);
50 // Records UMA metrics for a specific location.
51 void RecordHistogram(Location location, const base::TimeDelta& delta);
/external/chromium_org/chrome/common/media_galleries/
H A Diphoto_library.cc15 const base::FilePath& location,
18 location(location),
14 Photo(uint64 id, const base::FilePath& location, const base::FilePath& original_location) argument
H A Ditunes_library.h21 Track(uint64 id, const base::FilePath& location);
25 base::FilePath location; member in struct:itunes::parser::Track
/external/chromium_org/content/test/data/fileapi/
H A Dcommon.js12 if (document.location.hash == '#fail')
18 document.location.hash = '#pass';
24 document.location.hash = '#fail';
/external/chromium_org/remoting/webapp/
H A Dcs_oauth2_trampoline.js14 if (window.location.pathname == officialPath ||
15 window.location.pathname == unofficialPath) {
16 var query = window.location.search.substring(1);
/external/chromium_org/sync/api/
H A Dsync_error_unittest.cc9 #include "base/location.h"
26 tracked_objects::Location location = FROM_HERE; local
29 SyncError error(location, SyncError::DATATYPE_ERROR, msg, type);
31 EXPECT_EQ(location.line_number(), error.location().line_number());
39 tracked_objects::Location location = FROM_HERE; local
42 SyncError error(location, SyncError::DATATYPE_POLICY_ERROR, msg, type);
44 EXPECT_EQ(location.line_number(), error.location().line_number());
53 tracked_objects::Location location local
77 tracked_objects::Location location = FROM_HERE; local
105 tracked_objects::Location location = FROM_HERE; local
132 tracked_objects::Location location = FROM_HERE; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFastAllocBase.h78 void* operator new(size_t, NotNullTag, void* location) \
80 ASSERT(location); \
81 return location; \
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java39 String location = getHeader(LOCATION);
40 if (location != null) {
41 into.put(LOCATION, location);
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dsearch_engine_manager_browsertest.js29 // Test opening the search engine manager has correct location.
32 assertEquals(this.browsePreload, document.location.href);
/external/chromium_org/chrome/common/extensions/docs/static/js/
H A Dplatform_chooser.js13 window.location.assign(button.getAttribute('data-href'));
/external/chromium_org/net/url_request/
H A Ddata_protocol_handler.cc19 bool DataProtocolHandler::IsSafeRedirectTarget(const GURL& location) const {
/external/chromium_org/ppapi/c/dev/
H A Dppb_widget_dev.h55 * Get the location of the widget.
57 PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location);
59 * Set the location of the widget.
61 void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);
76 PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location);
77 void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DPluginFlyoutPreferences.java47 public void initializeDefaults(int location, int state, int width) { argument
48 m_store.setDefault(m_dockLocationKey, location);
70 public void setDockLocation(int location) { argument
71 m_store.setValue(m_dockLocationKey, location);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
H A Dloader.js31 if (window.location.host !== GOOGLE_HOST ||
32 window.location.pathname !== SEARCH_PATH) {
/external/chromium_org/chrome/common/
H A Dspellcheck_result.h33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
37 int location; member in struct:SpellCheckResult
/external/chromium_org/ppapi/cpp/dev/
H A Dwidget_dev.h30 bool GetLocation(Rect* location);
31 void SetLocation(const Rect& location);

Completed in 723 milliseconds

1234567891011>>