OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:structure
(Results
1 - 25
of
421
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/cts/tools/dex-tools/src/dex/structure/
DexInterface.java
17
package dex.
structure
;
NamedElement.java
17
package dex.
structure
;
DexAnnotationAttribute.java
17
package dex.
structure
;
DexEncodedValue.java
17
package dex.
structure
;
DexParameter.java
17
package dex.
structure
;
WithModifiers.java
17
package dex.
structure
;
DexAnnotatedElement.java
17
package dex.
structure
;
DexFile.java
17
package dex.
structure
;
DexEncodedAnnotation.java
17
package dex.
structure
;
DexField.java
17
package dex.
structure
;
DexClass.java
17
package dex.
structure
;
DexMethod.java
17
package dex.
structure
;
DexAnnotation.java
17
package dex.
structure
;
/external/chromium_org/v8/src/
types-inl.h
123
ZoneTypeConfig::Type* ZoneTypeConfig::from_struct(Struct*
structure
) {
124
return reinterpret_cast<Type*>(
structure
);
138
Struct*
structure
= reinterpret_cast<Struct*>(
local
140
structure
[0] = reinterpret_cast<void*>(tag);
141
structure
[1] = reinterpret_cast<void*>(length);
142
return
structure
;
147
void ZoneTypeConfig::struct_shrink(Struct*
structure
, int length) {
148
ASSERT(0 <= length && length <= struct_length(
structure
));
149
structure
[1] = reinterpret_cast<void*>(length);
154
int ZoneTypeConfig::struct_tag(Struct*
structure
) {
279
i::Handle<Struct>
structure
= isolate->factory()->NewFixedArray(length + 1);
local
[
all
...]
/cts/tools/dex-tools/src/dex/reader/
DexAnnotationAttributeImpl.java
20
import dex.
structure
.DexAnnotation;
21
import dex.
structure
.DexAnnotationAttribute;
22
import dex.
structure
.DexEncodedValue;
DexEncodedAnnotationImpl.java
20
import dex.
structure
.DexAnnotation;
21
import dex.
structure
.DexAnnotationAttribute;
22
import dex.
structure
.DexEncodedAnnotation;
23
import dex.
structure
.DexEncodedValueType;
TypeFormatter.java
19
import dex.
structure
.DexAnnotation;
20
import dex.
structure
.DexClass;
21
import dex.
structure
.DexField;
22
import dex.
structure
.DexFile;
23
import dex.
structure
.DexMethod;
/development/tools/line_endings/
Android.mk
3
# Copies files into the directory
structure
described by a manifest
/external/clang/test/SemaCXX/
reinterpret-cast.cpp
6
struct
structure
{ int m; };
struct
25
const int
structure
::*psi = 0;
26
(void)reinterpret_cast<const int
structure
::*>(psi);
28
structure
s;
29
(void)reinterpret_cast<
structure
>(s); // expected-error {{reinterpret_cast from '
structure
' to '
structure
' is not allowed}}
50
structure
*p3 = reinterpret_cast<
structure
*>(p2);
92
const int
structure
::*psi = 0
[
all
...]
cstyle-cast.cpp
169
struct
structure
{ int m; };
struct
187
structure
*p3 = (
structure
*)(p2);
223
const int
structure
::*psi = 0;
224
(void)(const float
structure
::*)(psi);
225
(void)(int
structure
::*)(psi); // const_cast appended
227
void (
structure
::*psf)() = 0;
228
(void)(int (
structure
::*)())(psf);
230
(void)(void (
structure
::*)())(psi); // expected-error-re {{C-style cast from 'const int
structure
::*' to 'void (structure::*)(){{( __attribute__\(\(thiscall\)\))?}}' is not allowed}
[
all
...]
/external/chromium_org/chrome/browser/safe_browsing/
pe_image_reader_win.h
103
// Populates |
structure
| with a pointer to a desired
structure
of type T at
105
// false if the
structure
does not fully fit within the image at the given
107
template<typename T> bool GetStructureAt(size_t offset, const T**
structure
) {
108
return GetStructureAt(offset, sizeof(**
structure
),
structure
);
111
// Populates |
structure
| with a pointer to a desired
structure
of type T at
113
// |structure_size| bytes. Returns false if the
structure
does not fully fit
117
const T**
structure
) {
[
all
...]
/external/chromium_org/third_party/angle/src/compiler/translator/
Types.h
225
interfaceBlock(0),
structure
(0)
233
interfaceBlock(0),
structure
(0)
241
interfaceBlock(0),
structure
(userDef)
249
interfaceBlock(interfaceBlockIn),
structure
(0)
361
return primarySize == 1 && secondarySize == 1 && !
structure
;
370
return
structure
;
374
structure
= s;
397
structure
== right.
structure
;
405
structure
== right.structure
484
TStructure *
structure
;
member in class:TType
[
all
...]
/build/tools/atree/
Android.mk
3
# Copies files into the directory
structure
described by a manifest
/cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java
28
import dex.
structure
.DexAnnotatedElement;
29
import dex.
structure
.DexAnnotation;
30
import dex.
structure
.DexClass;
31
import dex.
structure
.DexField;
32
import dex.
structure
.DexFile;
33
import dex.
structure
.DexMethod;
34
import dex.
structure
.DexParameter;
35
import dex.
structure
.WithModifiers;
LargeDexTests.java
21
import dex.
structure
.DexClass;
22
import dex.
structure
.DexFile;
Completed in 1400 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>