Searched refs:kind (Results 26 - 48 of 48) sorted by path

12

/frameworks/base/tools/aapt/
H A DAaptAssets.h307 const AaptGroupEntry& kind,
602 const AaptGroupEntry& kind,
/frameworks/base/tools/aidl/
H A DType.cpp159 Type::Type(const string& name, int kind, bool canWriteToParcel, bool canWriteToRpcData, argument
165 m_kind(kind),
174 int kind, bool canWriteToParcel, bool canWriteToRpcData,
180 m_kind(kind),
173 Type(const string& package, const string& name, int kind, bool canWriteToParcel, bool canWriteToRpcData, bool canBeOut, const string& declFile, int declLine) argument
H A DType.h26 Type(const string& name, int kind, bool canWriteToParcel,
29 int kind, bool canWriteToParcel, bool canWriteToRpcData, bool canBeOut,
H A Daidl.cpp267 kind_to_string(int kind) argument
269 switch (kind)
405 check_method(const char* filename, int kind, method_type* m) argument
419 if (kind != INTERFACE_TYPE_RPC) {
425 if (!(kind == INTERFACE_TYPE_BINDER ? returnType->CanWriteToParcel()
471 if (!(kind == INTERFACE_TYPE_BINDER ? t->CanWriteToParcel() : t->CanWriteToRpcData())) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h44 /// kind - the kind of this section, such as Text, BSS, GOT, and so on.
46 LDFileFormat::Kind kind() const function in class:mcld::LDSection
/frameworks/compile/mclinker/include/mcld/MC/
H A DZOption.h55 Kind kind() const function in class:mcld::ZOption
/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp126 DiagnosticEngine::ArgumentKind kind = getArgKind(arg_no); local
127 switch (kind) {
H A DELFDynObjWriter.cpp58 switch(sect->kind()) {
85 llvm::errs() << "WARNING: unsupported section kind: "
86 << sect->kind()
95 switch(sect->kind()) {
H A DELFExecWriter.cpp61 switch(sect->kind()) {
88 llvm::errs() << "WARNING: unsupported section kind: "
89 << sect->kind()
98 switch(sect->kind()) {
H A DELFObjectReader.cpp94 switch((*section)->kind()) {
255 (*section)->kind() == LDFileFormat::Relocation) {
265 (*section)->kind() == LDFileFormat::Relocation) {
H A DELFReader.cpp212 pInputSectHdr.kind(),
H A DLayout.cpp563 switch (sect->kind()) {
609 error(diag::err_unsupported_section) << sect->name() << sect->kind();
625 if (LDFileFormat::BSS != m_SectionOrder[index - 1]->kind()) {
/frameworks/compile/mclinker/lib/MC/
H A DMCLDOptions.cpp83 switch (pOption.kind()) {
/frameworks/compile/mclinker/lib/Support/
H A DCommandLine.cpp147 if (ZOption::Unknown == Val.kind())
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp836 pInputSectHdr.kind(),
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1120 if (LDFileFormat::Null == pSectHdr.kind())
1132 switch (pSectHdr.kind()) {
1283 // std::sort(com_sym, com_end, some kind of order);
1405 if (LDFileFormat::BSS == sect_table[prev_idx]->kind())
1423 LDFileFormat::Null != (*sect)->kind())
1429 LDFileFormat::Null == (*sect)->kind()) {
1445 if (LDFileFormat::Null != (*sect)->kind())
1516 LDFileFormat::Null == segment.getFirstSection()->kind())
1525 if (LDFileFormat::BSS != last_sect->kind())
/frameworks/compile/mclinker/unittests/
H A DSectionDataTest.cpp48 s->getSection().kind() == LDFileFormat::Null);
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp270 void *Loader::load_driver(const char* kind, const char *tag, argument
277 snprintf(driver_absolute_path, PATH_MAX, search1, kind, tag);
279 snprintf(driver_absolute_path, PATH_MAX, search2, kind, tag);
H A DLoader.h66 void *load_driver(const char* kind, const char *tag, egl_connection_t* cnx, uint32_t mask);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DRenderScript.java152 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize); argument
153 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) { argument
155 return rsnElementCreate(mContext, type, kind, norm, vecSize);
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp243 nElementCreate(JNIEnv *_env, jobject _this, RsContext con, jint type, jint kind, jboolean norm, jint size) argument
245 LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", con, type, kind, norm, size);
246 return (jint)rsElementCreate(con, (RsDataType)type, (RsDataKind)kind, norm, size);
/frameworks/wilhelm/src/
H A DThreadPool.c36 // extract parameters and call the right method depending on kind
37 ClosureKind kind = closure.mKind; local
41 switch (kind) {
67 SL_LOGE("Unexpected callback kind %d", kind);
161 // here on any kind of error
248 // Note that this raw interface requires an explicit "kind" and full parameter list.
250 SLresult ThreadPool_add(ThreadPool *tp, ClosureKind kind, ClosureHandler_generic handler, argument
259 closure->mKind = kind;
260 switch(kind) {
[all...]
H A DThreadPool.h88 extern SLresult ThreadPool_add(ThreadPool *tp, ClosureKind kind,

Completed in 316 milliseconds

12