OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:object1
(Results
1 - 25
of
71
) sorted by null
1
2
3
/external/llvm/test/Transforms/GlobalOpt/
invariant-nodatalayout.ll
6
@
object1
= global { i32, i32 } zeroinitializer
7
; CHECK: @
object1
= global { i32, i32 } zeroinitializer
10
%ptr = bitcast {i32, i32}* @
object1
to i8*
invariant.ll
13
@
object1
= global i32 0
14
; CHECK: @
object1
= constant i32 -1
16
store i32 -1, i32* @
object1
17
%A = bitcast i32* @
object1
to i8*
/external/llvm/test/CodeGen/X86/
2012-11-28-merge-store-alias.ll
12
%
object1
= alloca [10 x i32]
14
%ret0 = call i32 @foo([10 x i32]* %
object1
) nounwind
16
%O1_1 = getelementptr [10 x i32]* %
object1
, i64 0, i32 1
17
%O1_2 = getelementptr [10 x i32]* %
object1
, i64 0, i32 2
18
%O1_3 = getelementptr [10 x i32]* %
object1
, i64 0, i32 3
19
%O1_4 = getelementptr [10 x i32]* %
object1
, i64 0, i32 4
20
%ld_ptr = getelementptr [10 x i32]* %
object1
, i64 0, i32 9
28
%ret1 = call i32 @foo([10 x i32]* %
object1
) nounwind
/external/replicaisland/src/com/replica/replicaisland/
ChannelSystem.java
87
public int compare(final Channel
object1
, final Channel object2) {
89
if (
object1
== null && object2 != null) {
91
} else if (
object1
!= null && object2 == null) {
93
} else if (
object1
!= null && object2 != null) {
94
if (
object1
.name == null && object2.name != null) {
96
} else if (
object1
.name != null && object2.name == null) {
98
} else if (
object1
.name != null && object2.name != null) {
99
result =
object1
.name.compareTo(object2.name);
PhasedObjectManager.java
88
public int compare(BaseObject
object1
, BaseObject object2) {
90
if (
object1
!= null && object2 != null) {
91
result = ((PhasedObject)
object1
).phase - ((PhasedObject) object2).phase;
92
} else if (
object1
== null && object2 != null) {
94
} else if (object2 == null &&
object1
!= null) {
GameObjectManager.java
185
public int compare(BaseObject
object1
, BaseObject object2) {
187
if (
object1
== null && object2 != null) {
189
} else if (
object1
!= null && object2 == null) {
191
} else if (
object1
!= null && object2 != null) {
192
float delta = ((GameObject)
object1
).getPosition().x
SoundSystem.java
182
public int compare(final Sound
object1
, final Sound object2) {
184
if (
object1
== null && object2 != null) {
186
} else if (
object1
!= null && object2 == null) {
188
} else if (
object1
!= null && object2 != null) {
189
result =
object1
.resource - object2.resource;
GameObjectCollisionSystem.java
321
public int compare(CollisionVolumeRecord
object1
, CollisionVolumeRecord object2) {
323
if (
object1
== null && object2 != null) {
325
} else if (
object1
!= null && object2 == null) {
327
} else if (
object1
!= null && object2 != null) {
328
sCompareFlip.flipX = (
object1
.object.facingDirection.x < 0.0f);
329
sCompareFlip.flipY = (
object1
.object.facingDirection.y < 0.0f);
330
sCompareFlip.parentWidth =
object1
.object.width;
331
sCompareFlip.parentHeight =
object1
.object.height;
333
final float minX1 =
object1
.object.getPosition().x
334
+
object1
.boundingVolume.getMinXPosition(sCompareFlip)
[
all
...]
LevelSelectActivity.java
344
public int compare(final LevelMetaData
object1
, final LevelMetaData object2) {
346
if (
object1
== null && object2 != null) {
348
} else if (
object1
!= null && object2 == null) {
350
} else if (
object1
!= null && object2 != null) {
351
result =
object1
.level.timeStamp.compareTo(object2.level.timeStamp);
/external/clang/test/SemaObjCXX/
conversion-to-objc-pointer-2.mm
82
NSObject*
object1
= [[[NSObject alloc] init] autorelease];
85
[bar setBlah:
object1
]; // <== Does not compile. It should.
86
if (
object1
== object2)
/external/clang/test/SemaTemplate/
instantiate-using-decl.cpp
26
void Visit(struct
Object1
*);
37
void Visit(struct
Object1
*); // expected-note {{candidate function}}
45
Knot().Visit((struct
Object1
*) 0);
/external/clang/test/SemaObjC/
arc-peformselector.m
19
- (id)performSelector:(SEL)aSelector withObject:(id)
object1
withObject:(id)object2;
37
- (id)performSelector:(SEL)aSelector withObject:(id)
object1
withObject:(id)object2 { return 0; }
continuation-class-err.m
9
@property(readwrite, assign) id
object1
; // expected-note {{property declared here}}
15
@property(readonly) id
object1
; // expected-error {{illegal redeclaration of property in class extension 'ReadOnly' (attribute must be 'readwrite', while its primary must be 'readonly')}}
/external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java
56
public int compare(Object
object1
, Object object2)
58
ProgramMember member1 = (ProgramMember)
object1
;
AttributeSorter.java
80
public int compare(Object
object1
, Object object2)
82
Attribute attribute1 = (Attribute)
object1
;
/libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java
86
public int compare(String
object1
, String object2) {
87
int length1 =
object1
.length();
102
public int compare(E
object1
, E object2) {
/frameworks/base/core/java/android/gesture/
InstanceLearner.java
30
public int compare(Prediction
object1
, Prediction object2) {
31
double score1 =
object1
.score;
/external/clang/test/CodeGenObjCXX/
literals.mm
31
// CHECK: [[
OBJECT1
:%[a-zA-Z0-9.]+]] = invoke i8* @_ZNK1YcvP11objc_objectEv
32
// CHECK: [[RET1:%[a-zA-Z0-9.]+]] = call i8* @objc_retainAutoreleasedReturnValue(i8* [[
OBJECT1
]])
78
// CHECK: [[
OBJECT1
:%[a-zA-Z0-9.]+]] = invoke i8* @_ZNK1YcvP11objc_objectEv
79
// CHECK: [[RET1:%[a-zA-Z0-9.]+]] = call i8* @objc_retainAutoreleasedReturnValue(i8* [[
OBJECT1
]])
/external/eigen/unsupported/Eigen/src/BVH/
BVAlgorithms.h
46
template<typename Volume1, typename
Object1
, typename Object2, typename Intersector>
51
bool intersectObject(const
Object1
&obj) { return intersector.intersectObjectObject(obj, stored); }
58
template<typename Volume2, typename Object2, typename
Object1
, typename Intersector>
61
intersector_helper2(const
Object1
&inStored, Intersector &in) : stored(inStored), intersector(in) {}
64
Object1
stored;
182
template<typename Volume1, typename
Object1
, typename Object2, typename Minimizer>
188
Scalar minimumOnObject(const
Object1
&obj) { return minimizer.minimumOnObjectObject(obj, stored); }
195
template<typename Volume2, typename Object2, typename
Object1
, typename Minimizer>
199
minimizer_helper2(const
Object1
&inStored, Minimizer &m) : stored(inStored), minimizer(m) {}
202
Object1
stored
[
all
...]
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
AccountManagerServiceTest.java
61
public int compare(Account
object1
, Account object2) {
62
if (
object1
== object2) return 0;
63
if (
object1
== null) return 1;
65
int result =
object1
.type.compareTo(object2.type);
67
return
object1
.name.compareTo(object2.name);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime_priv.h
68
// +-- Creates ----->
Object1
72
// PluginObject will be the "owner" for both
Object1
and Object2.
/packages/apps/Settings/src/com/android/settings/applications/
AppOpsState.java
417
public int compare(AppOpEntry
object1
, AppOpEntry object2) {
418
if (
object1
.getSwitchOrder() != object2.getSwitchOrder()) {
419
return
object1
.getSwitchOrder() < object2.getSwitchOrder() ? -1 : 1;
421
if (
object1
.isRunning() != object2.isRunning()) {
423
return
object1
.isRunning() ? -1 : 1;
425
if (
object1
.getTime() != object2.getTime()) {
427
return
object1
.getTime() > object2.getTime() ? -1 : 1;
429
return sCollator.compare(
object1
.getAppEntry().getLabel(),
ApplicationsState.java
166
public int compare(AppEntry
object1
, AppEntry object2) {
167
final boolean normal1 =
object1
.info.enabled
168
&& (
object1
.info.flags&ApplicationInfo.FLAG_INSTALLED) != 0;
174
return sCollator.compare(
object1
.label, object2.label);
182
public int compare(AppEntry
object1
, AppEntry object2) {
183
if (
object1
.size < object2.size) return 1;
184
if (
object1
.size > object2.size) return -1;
185
return sCollator.compare(
object1
.label, object2.label);
193
public int compare(AppEntry
object1
, AppEntry object2) {
194
if (
object1
.internalSize < object2.internalSize) return 1
[
all
...]
/libcore/luni/src/main/java/java/text/
Collator.java
183
* @param
object1
187
* @return a negative value if {@code
object1
} is less than {@code object2},
188
* 0 if they are equal, and a positive value if {@code
object1
} is
191
* if {@code
object1
} or {@code object2} is not a {@code String}.
193
public int compare(Object
object1
, Object object2) {
194
return compare((String)
object1
, (String) object2);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.m
50
object1
= anObject1;
51
if (
object1
) [
object1
retain];
64
if (
object1
) [
object1
release];
74
if ( [(ANTLRTreeWizard *)actor _parse:t Pattern:
object1
/* tpattern */ Map:object2 /* labels */] ) {
79
if ( [(ANTLRTreeWizard *)actor _parse:t Pattern:
object1
/* tpattern */ Map:nil] ) {
90
[
object1
addObject:t];
96
@synthesize
object1
;
Completed in 421 milliseconds
1
2
3