HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 226 - 250 of 10994) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
HandleGenerator.h 33 uint32_t id = mNextUniqueId++; local
34 while (id > std::numeric_limits<T>::max()) {
35 id -= std::numeric_limits<T>::max();
37 return static_cast<T>(id);
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Library/MppLib/
MppLib.c 53 #define GET_PCD_PTR(id,num) PcdGetPtr(PcdChip##id##MppSel##num)
54 #define GET_PIN_COUNT(id) PcdGet32(PcdChip##id##MppPinCount)
55 #define GET_BASE(id) PcdGet64(PcdChip##id##MppBaseAddress)
56 #define GET_REV_FLAG(id) PcdGetBool(PcdChip##id##MppReverseFlag)
59 #define GetMppPcd(id) { \
60 PinCount[id] = GET_PIN_COUNT(id); \
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewFontWeightTest.java 46 private TextView getTextView(int id) {
51 return (TextView) container.findViewById(id);
133 assertFontSelected(getTextView(R.id.textView_weight100_upright), new FontStyle(100, false));
134 assertFontSelected(getTextView(R.id.textView_weight100_italic), new FontStyle(100, true));
135 assertFontSelected(getTextView(R.id.textView_weight200_upright), new FontStyle(200, false));
136 assertFontSelected(getTextView(R.id.textView_weight200_italic), new FontStyle(200, true));
137 assertFontSelected(getTextView(R.id.textView_weight300_upright), new FontStyle(300, false));
138 assertFontSelected(getTextView(R.id.textView_weight300_italic), new FontStyle(300, true));
139 assertFontSelected(getTextView(R.id.textView_weight400_upright), new FontStyle(400, false));
140 assertFontSelected(getTextView(R.id.textView_weight400_italic), new FontStyle(400, true))
    [all...]
  /device/linaro/hikey/hifi/xaf/host-apf/utest/include/
xaf-mem.h 44 void* mem_malloc(int size, int id);
45 void mem_free(void * heap_ptr, int id);
48 int mem_get_alloc_size(mem_obj_t* mem_handle, int id);
  /external/antlr/runtime/ObjC/Framework/
EarlyExitException.h 34 + (EarlyExitException *) newException:(id<IntStream>)anInputStream decisionNumber:(NSInteger)aDecisionNumber;
35 - (id) initWithStream:(id<IntStream>)anInputStream decisionNumber:(NSInteger) aDecisionNumber;
Tree.h 35 //+ (id<Tree>) invalidNode;
37 - (id<Tree>) getChild:(NSUInteger)index;
42 - (id<Tree>)getParent;
44 - (void) setParent:(id<Tree>)t;
50 - (id<Tree>) getAncestor:(NSInteger) ttype;
68 - (void) addChild:(id<Tree>) t;
71 - (void) setChild:(NSInteger)i With:(id<Tree>) t;
73 - (id) deleteChild:(NSInteger) i;
80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
107 - (id<Tree>) dupNode
    [all...]
TreeFilter.h 171 id<TokenStream> originalTokenStream;
172 id<TreeAdaptor> originalAdaptor;
178 + (id) newTreeFilter:(id<TreeNodeStream>)input;
180 + (id) newTreeFilter:(id<TreeNodeStream>)input State:(RecognizerSharedState *)state;
182 - (id) initWithStream:(id<TreeNodeStream>)anInput State:(RecognizerSharedState *)aState;
184 - (void) applyOnce:(id<BaseTree>)t rule:(fptr *)whichRule;
186 - (void) downup:(id<BaseTree>)t
    [all...]
UnbufferedTokenStream.h 39 id<TokenSource> tokenSource;
44 @property (retain, getter=getTokenSource, setter=setTokenSource:) id<TokenSource> tokenSource;
48 + (UnbufferedTokenStream *)newUnbufferedTokenStream:(id<TokenSource>)aTokenSource;
49 - (id) init;
50 - (id) initWithTokenSource:(id<TokenSource>)aTokenSource;
52 - (id<Token>)nextElement;
53 - (BOOL)isEOF:(id<Token>) aToken;
54 - (id<TokenSource>)getTokenSource;
56 - (NSString *)toStringFromToken:(id<Token>)aStart ToEnd:(id<Token>)aStop
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpContext.java 57 Object getAttribute(String id);
59 void setAttribute(String id, Object obj);
61 Object removeAttribute(String id);
  /external/capstone/arch/ARM/
ARMMapping.h 14 // given internal insn id, return public instruction ID
15 void ARM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
17 const char *ARM_insn_name(csh handle, unsigned int id);
19 const char *ARM_group_name(csh handle, unsigned int id);
  /external/capstone/arch/Mips/
MipsMapping.h 12 // given internal insn id, return public instruction info
13 void Mips_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
15 const char *Mips_insn_name(csh handle, unsigned int id);
17 const char *Mips_group_name(csh handle, unsigned int id);
19 // map instruction name to instruction ID
  /external/capstone/arch/SystemZ/
SystemZMapping.h 12 // given internal insn id, return public instruction info
13 void SystemZ_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
15 const char *SystemZ_insn_name(csh handle, unsigned int id);
17 const char *SystemZ_group_name(csh handle, unsigned int id);
  /external/capstone/arch/XCore/
XCoreMapping.h 12 // given internal insn id, return public instruction info
13 void XCore_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
15 const char *XCore_insn_name(csh handle, unsigned int id);
17 const char *XCore_group_name(csh handle, unsigned int id);
22 // map register name to register ID
  /external/clang/test/ARCMT/designated-init-in-header/
header1.h 6 -(id)init;
12 +(id)s1;
13 -(id)initWithFoo:(NSString*)foo;
  /external/clang/test/CodeGenCXX/
mangle-unnameable-conversions.cpp 3 template<typename T> using id = T;
6 operator id<T[N]>&();
8 operator id<T (U::*)()>() const;
  /external/grpc-grpc/src/objective-c/RxLibrary/
GRXImmediateWriter.h 49 + (GRXWriter *)writerWithValueSupplier:(id (^)(void))block;
59 + (GRXWriter *)writerWithContainer:(id<NSFastEnumeration>)container;
65 + (GRXWriter *)writerWithValue:(id)value;
GRXWriter+Immediate.h 33 + (instancetype)writerWithValueSupplier:(id (^)(void))block;
43 + (instancetype)writerWithContainer:(id<NSFastEnumeration>)container;
49 + (instancetype)writerWithValue:(id)value;
NSEnumerator+GRXUtil.h 29 + (NSEnumerator *)grx_enumeratorWithContainer:(id<NSFastEnumeration>)container;
35 + (NSEnumerator *)grx_enumeratorWithSingleValue:(id)value;
41 + (NSEnumerator *)grx_enumeratorWithValueSupplier:(id (^)(void))block;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
VariableDeclarator.java 34 private VariableDeclaratorId id; field in class:VariableDeclarator
41 public VariableDeclarator(VariableDeclaratorId id) {
42 setId(id);
45 public VariableDeclarator(VariableDeclaratorId id, Expression init) {
46 setId(id);
50 public VariableDeclarator(int beginLine, int beginColumn, int endLine, int endColumn, VariableDeclaratorId id, Expression init) {
52 setId(id);
67 return id;
74 public void setId(VariableDeclaratorId id) {
75 this.id = id
    [all...]
  /external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/
A.h 19 explicit A(int id) : id_(id) {++count;}
23 int id() const {return id_;} function in class:A
  /external/libdrm/tests/kms/
libkms-test-crtc.c 26 struct kms_crtc *kms_crtc_create(struct kms_device *device, uint32_t id)
35 crtc->id = id;
  /external/skia/src/gpu/mtl/
GrMtlSampler.h 22 id<MTLSamplerState> mtlSamplerState() const { return fMtlSamplerState; }
25 GrMtlSampler(id<MTLSamplerState> mtlSamplerState) : fMtlSamplerState(mtlSamplerState) {}
27 id<MTLSamplerState> fMtlSamplerState;
  /external/skqp/src/gpu/mtl/
GrMtlSampler.h 22 id<MTLSamplerState> mtlSamplerState() const { return fMtlSamplerState; }
25 GrMtlSampler(id<MTLSamplerState> mtlSamplerState) : fMtlSamplerState(mtlSamplerState) {}
27 id<MTLSamplerState> fMtlSamplerState;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue47/
IncompleteBean.java 19 private int id; field in class:IncompleteBean
23 id = 10;
35 return id;
  /external/u-boot/include/
remoteproc.h 97 * @id: id of the remote processor
103 int rproc_load(int id, ulong addr, ulong size);
107 * @id: id of the remote processor
111 int rproc_start(int id);
115 * @id: id of the remote processor
119 int rproc_stop(int id);
123 * @id: id of the remote processo
    [all...]

Completed in 2365 milliseconds

1 2 3 4 5 6 7 8 91011>>