OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:moduleid
(Results
1 - 25
of
268
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/packages/apps/Camera2/src/com/android/camera/app/
ModuleManagerImpl.java
48
final int
moduleId
= agent.getModuleId();
49
if (
moduleId
== MODULE_INDEX_NONE) {
53
if (mRegisteredModuleAgents.get(
moduleId
) != null) {
54
throw new IllegalArgumentException("Module ID is registered already:" +
moduleId
);
56
mRegisteredModuleAgents.put(
moduleId
, agent);
60
public boolean unregisterModule(int
moduleId
) {
61
if (mRegisteredModuleAgents.get(
moduleId
) == null) {
64
mRegisteredModuleAgents.delete(
moduleId
);
65
if (
moduleId
== mDefaultModuleId) {
90
public boolean setDefaultModuleIndex(int
moduleId
) {
[
all
...]
ModuleManager.java
75
* @param
moduleId
The module ID.
78
boolean unregisterModule(int
moduleId
);
97
* @param
moduleId
The ID of the default module.
98
* @return Whether the {@code
moduleId
} exists.
100
boolean setDefaultModuleIndex(int
moduleId
);
111
* @param
moduleId
The module ID.
114
ModuleAgent getModuleAgent(int
moduleId
);
120
* @param
moduleId
index of the mode to switch from
126
int getQuickSwitchToModuleId(int
moduleId
, SettingsManager settingsManager, Context context);
/external/llvm/test/Other/X86/
inline-asm-newline-terminator.ll
3
;
ModuleID
= 't.c'
/external/llvm/test/Transforms/GlobalOpt/
atexit.ll
3
; CHECK:
ModuleID
/external/llvm/test/Bindings/llvm-c/
calc.test
5
;CHECK:
ModuleID
= 'test'
12
;CHECK:
ModuleID
= 'arg1'
/external/clang/test/CodeGen/
static-order.c
2
// CHECK:
ModuleID
incomplete-function-type.c
2
// CHECK:
ModuleID
/external/llvm/test/CodeGen/AArch64/
compiler-ident.ll
3
;
ModuleID
= 'compiler-ident.c'
/packages/apps/Camera2/src/com/android/camera/module/
ModulesInfo.java
67
private static void registerPhotoModule(ModuleManager moduleManager, final int
moduleId
) {
71
return
moduleId
;
90
private static void registerVideoModule(ModuleManager moduleManager, final int
moduleId
) {
94
return
moduleId
;
109
private static void registerWideAngleModule(ModuleManager moduleManager, final int
moduleId
) {
113
return
moduleId
;
128
private static void registerPhotoSphereModule(ModuleManager moduleManager, final int
moduleId
) {
132
return
moduleId
;
147
private static void registerRefocusModule(ModuleManager moduleManager, final int
moduleId
) {
151
return
moduleId
;
[
all
...]
/external/llvm/test/CodeGen/ARM/
bicZext.ll
2
;
ModuleID
= 'bic.c'
byval_load_align.ll
12
%struct.
ModuleID
= type { [32 x i8], [32 x i8], i16 }
14
@sID = internal constant %struct.
ModuleID
{ [32 x i8] c"TEST\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00", [32 x i8] c"1.0\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00", i16 23 }, align 2
19
tail call void @Logger(i8 signext 97, %struct.
ModuleID
* byval @sID) #2
23
declare void @Logger(i8 signext, %struct.
ModuleID
* byval) #1
fpowi.ll
4
;
ModuleID
= '<stdin>'
2013-06-03-ByVal-2Kbytes.ll
2
;
ModuleID
= 'attri_16.c'
2013-11-08-inline-asm-neon-array.ll
3
;
ModuleID
= 'bug.c'
/external/llvm/test/Transforms/Inline/
casts.ll
2
;
ModuleID
= 'short.opt.bc'
/external/clang/test/CodeGenObjC/
next-objc-dispatch.m
29
// CHECK-FRAGILE_LEGACY:
ModuleID
35
// CHECK-NONFRAGILE_LEGACY:
ModuleID
41
// CHECK-NONFRAGILE_NONLEGACY:
ModuleID
/external/clang/test/CodeGenCXX/
member-templates.cpp
3
// CHECK: ;
ModuleID
/external/llvm/test/CodeGen/PowerPC/
ppc64-crash.ll
3
;
ModuleID
= 'undo.c'
remat-imm.ll
2
;
ModuleID
= 'test.c'
/external/llvm/test/CodeGen/X86/
2008-10-06-x87ld-nan-1.ll
0
;
ModuleID
= 'nan.bc'
atom-lea-addw-bug.ll
3
;
ModuleID
= 'bugpoint-reduced-simplified.bc'
vec_insert-4.ll
3
;
ModuleID
= '<stdin>'
/external/llvm/test/Linker/
2008-03-05-AliasReference2.ll
4
;
ModuleID
= 'bug.o'
/external/llvm/test/Analysis/BasicAA/
2008-04-15-Byval.ll
2
;
ModuleID
= 'small2.c'
/external/llvm/test/CodeGen/ARM/Windows/
chkstk-movw-movt-isel.ll
4
;
ModuleID
= 'reduced.c'
Completed in 1139 milliseconds
1
2
3
4
5
6
7
8
9
10
11