OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:attributeList
(Results
1 - 6
of
6
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java
63
private Map<String, String>
attributeList
= null;
212
if (
attributeList
== null) {
214
attributeList
= new HashMap<String, String>();
217
attributeList
.remove(key);
219
attributeList
.put(key, value);
224
return
attributeList
== null ? null :
attributeList
.get(key);
228
return
attributeList
!= null &&
attributeList
.containsKey(key);
232
return
attributeList
== null ? 0 : attributeList.size()
[
all
...]
/cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java
76
int[]
attributeList
= new int[] {
90
if (egl.eglChooseConfig(display,
attributeList
, null, 0, numConfigs)) {
92
if (egl.eglChooseConfig(display,
attributeList
, configs, configs.length,
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinter.java
602
List<Attr>
attributeList
= new ArrayList<Attr>();
604
attributeList
.add((Attr) attributes.item(i));
607
Collections.sort(
attributeList
, comparator);
619
if (singleLine || (depth == 0 && XMLNS.equals(
attributeList
.get(0).getPrefix()))) {
627
Attr last =
attributeList
.get(attributeCount - 1);
628
for (Attr attribute :
attributeList
) {
[
all
...]
/cts/tests/src/android/opengl/cts/
EglConfigGLSurfaceView.java
60
int[]
attributeList
= new int[] {
66
if (egl.eglChooseConfig(display,
attributeList
, configs, 1, new int[] {1})) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js
264
var
attributeList
= JstProcessor.attributeList_;
265
attributeList
.length = 0;
273
attributeList
.push(name + "=" + value);
279
if (
attributeList
.length == 0) {
286
var attstring =
attributeList
.join(CHAR_ampersand);
[
all
...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js
264
var
attributeList
= JstProcessor.attributeList_;
265
attributeList
.length = 0;
273
attributeList
.push(name + "=" + value);
279
if (
attributeList
.length == 0) {
286
var attstring =
attributeList
.join(CHAR_ampersand);
[
all
...]
Completed in 496 milliseconds