HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 151 - 175 of 14570) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugTreeParser.h 33 id<ANTLRDebugEventListener> debugListener;
36 - (id) initWithTreeNodeStream:(id<ANTLRTreeNodeStream>)theStream;
37 - (id) initWithTreeNodeStream:(id<ANTLRTreeNodeStream>)theStream
40 - (id) initWithTreeNodeStream:(id<ANTLRTreeNodeStream>)theStream
41 debugListener:(id<ANTLRDebugEventListener>)theDebugListener
44 - (id<ANTLRDebugEventListener>) debugListener;
45 - (void) setDebugListener: (id<ANTLRDebugEventListener>) aDebugListener
    [all...]
ANTLRRecognitionException.h 35 id<ANTLRIntStream> input;
37 id<ANTLRToken> token;
38 id<ANTLRBaseTree> node;
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input;
46 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token;
47 @property (retain, getter=getNode, setter=setNode:) id<ANTLRBaseTree>node;
52 + (id) newException;
53 + (id) newException:(id<ANTLRIntStream>) anInputStream;
54 - (id) init
    [all...]
ANTLRRuntimeException.h 44 - (id) init;
45 - (id) init:(NSString *)aReason;
46 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
47 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
51 - (id) stackTrace:(NSException *)e;
58 + (id) newException;
59 + (id) newException:(NSString *)aReason;
60 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
62 - (id) init
    [all...]
ANTLRMismatchedTokenException.h 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/chromium_org/media/webm/
webm_info_parser.cc 37 WebMParserClient* WebMInfoParser::OnListStart(int id) { return this; }
39 bool WebMInfoParser::OnListEnd(int id) {
40 if (id == kWebMIdInfo && timecode_scale_ == -1) {
48 bool WebMInfoParser::OnUInt(int id, int64 val) {
49 if (id != kWebMIdTimecodeScale)
53 DVLOG(1) << "Multiple values for id " << std::hex << id << " specified"; local
61 bool WebMInfoParser::OnFloat(int id, double val) {
62 if (id != kWebMIdDuration) {
63 DVLOG(1) << "Unexpected float for id" << std::hex << id local
    [all...]
  /external/chromium_org/third_party/ocmock/OCMock/
OCMockObject.h 2 // $Id$
18 + (id)mockForClass:(Class)aClass;
19 + (id)mockForProtocol:(Protocol *)aProtocol;
20 + (id)partialMockForObject:(NSObject *)anObject;
22 + (id)niceMockForClass:(Class)aClass;
23 + (id)niceMockForProtocol:(Protocol *)aProtocol;
25 + (id)observerMock;
27 - (id)init;
31 - (id)stub;
32 - (id)expect
    [all...]
  /external/chromium_org/ui/base/
default_theme_provider.h 27 virtual gfx::ImageSkia* GetImageSkiaNamed(int id) const OVERRIDE;
28 virtual SkColor GetColor(int id) const OVERRIDE;
29 virtual bool GetDisplayProperty(int id, int* result) const OVERRIDE;
31 virtual bool HasCustomImage(int id) const OVERRIDE;
33 int id,
37 virtual NSImage* GetNSImageNamed(int id) const OVERRIDE;
38 virtual NSColor* GetNSImageColorNamed(int id) const OVERRIDE;
39 virtual NSColor* GetNSColor(int id) const OVERRIDE;
40 virtual NSColor* GetNSColorTint(int id) const OVERRIDE;
41 virtual NSGradient* GetNSGradient(int id) const OVERRIDE
    [all...]
theme_provider.h 53 // Get the image specified by |id|. An implementation of ThemeProvider should
55 virtual gfx::ImageSkia* GetImageSkiaNamed(int id) const = 0;
57 // Get the color specified by |id|.
58 virtual SkColor GetColor(int id) const = 0;
61 // height) specified by |id|.
62 virtual bool GetDisplayProperty(int id, int* result) const = 0;
70 virtual bool HasCustomImage(int id) const = 0;
76 int id,
80 // Gets the NSImage with the specified |id|.
81 virtual NSImage* GetNSImageNamed(int id) const = 0
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
NativeObject.java 46 * The ID of the object, usually depends on its type.
49 protected int id = -1; field in class:NativeObject
84 protected NativeObject(Class<?> type, int id){
86 this.id = id;
90 * Sets the ID of the GLObject. This method is used in Renderer and must
92 * @param id The ID to set
94 public void setId(int id){
95 if (this.id != -1
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeIterator.h 40 id<ANTLRTreeAdaptor> adaptor;
41 id<ANTLRTree> root;
42 id<ANTLRTree> tree;
44 id<ANTLRTree> up;
45 id<ANTLRTree> down;
46 id<ANTLRTree> eof;
51 @property(retain, readwrite) id<ANTLRTree> up;
52 @property(retain, readwrite) id<ANTLRTree> down;
53 @property(retain, readwrite) id<ANTLRTree> eof;
57 andTree:(id<ANTLRTree>)tree
    [all...]
ANTLRMismatchedRangeException.h 37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newANTLRMismatchedTokenExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeIterator.h 40 id<ANTLRTreeAdaptor> adaptor;
41 id<ANTLRTree> root;
42 id<ANTLRTree> tree;
44 id<ANTLRTree> up;
45 id<ANTLRTree> down;
46 id<ANTLRTree> eof;
51 @property(retain, readwrite) id<ANTLRTree> up;
52 @property(retain, readwrite) id<ANTLRTree> down;
53 @property(retain, readwrite) id<ANTLRTree> eof;
57 andTree:(id<ANTLRTree>)tree
    [all...]
ANTLRMismatchedRangeException.h 37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newANTLRMismatchedTokenExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeIterator.h 40 id<ANTLRTreeAdaptor> adaptor;
41 id<ANTLRTree> root;
42 id<ANTLRTree> tree;
44 id<ANTLRTree> up;
45 id<ANTLRTree> down;
46 id<ANTLRTree> eof;
51 @property(retain, readwrite) id<ANTLRTree> up;
52 @property(retain, readwrite) id<ANTLRTree> down;
53 @property(retain, readwrite) id<ANTLRTree> eof;
57 andTree:(id<ANTLRTree>)tree
    [all...]
ANTLRMismatchedRangeException.h 37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
45 + (id) newANTLRMismatchedTokenExceptionMissing:(NSInteger)expectedTokenType
46 Stream:(id<ANTLRIntStream>)anInput
47 Token:(id<ANTLRToken>)inserted;
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
49 + (id) newANTLRMismatchedTokenExceptionStream:(id<ANTLRIntStream>)anInput
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
    [all...]
  /external/iproute2/lib/
rt_names.c 33 unsigned int id; member in struct:rtnl_hash_entry
48 int id; local
55 if (sscanf(p, "0x%x %s\n", &id, namebuf) != 2 &&
56 sscanf(p, "0x%x %s #", &id, namebuf) != 2 &&
57 sscanf(p, "%d %s\n", &id, namebuf) != 2 &&
58 sscanf(p, "%d %s #", &id, namebuf) != 2) {
65 if (id<0)
68 entry->id = id;
70 entry->next = hash[id & (size - 1)]
86 int id; local
    [all...]
  /external/chromium_org/chrome/browser/
command_updater.cc 31 bool CommandUpdater::SupportsCommand(int id) const {
32 return commands_.find(id) != commands_.end();
35 bool CommandUpdater::IsCommandEnabled(int id) const {
36 const CommandMap::const_iterator command(commands_.find(id));
42 bool CommandUpdater::ExecuteCommand(int id) {
43 return ExecuteCommandWithDisposition(id, CURRENT_TAB);
47 int id,
49 if (SupportsCommand(id) && IsCommandEnabled(id)) {
50 delegate_->ExecuteCommandWithDisposition(id, disposition)
    [all...]
command_observer.h 9 // the state of a particular command ID is modified. See CommandUpdater.
13 // specified command id.
14 virtual void EnabledStateChangedForCommand(int id, bool enabled) = 0;
  /bionic/libc/kernel/common/linux/
patchkey.h 29 #define _PATCHKEY(id) (0xfd00|id)
31 #define _PATCHKEY(id) ((id<<8)|0x00fd)
  /development/ndk/platforms/android-3/include/linux/
patchkey.h 23 #define _PATCHKEY(id) (0xfd00|id)
25 #define _PATCHKEY(id) ((id<<8)|0x00fd)
  /external/chromium_org/cc/output/
renderer.cc 9 bool Renderer::HaveCachedResourcesForRenderPassId(RenderPass::Id id) const {
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_factory.cc 47 BaseScreen* ScreenFactory::CreateScreen(const std::string& id) {
48 BaseScreen* result = CreateScreenImpl(id);
49 DCHECK_EQ(id, result->GetID());
53 BaseScreen* ScreenFactory::CreateScreenImpl(const std::string& id) {
54 if (id == kNetworkScreenId) {
56 } else if (id == kUpdateScreenId) {
58 } else if (id == kUserImageScreenId) {
61 } else if (id == kEulaScreenId) {
63 } else if (id == kEnrollmentScreenId) {
66 } else if (id == kResetScreenId)
    [all...]

Completed in 763 milliseconds

1 2 3 4 5 67 8 91011>>