HomeSort by relevance Sort by last modified time
    Searched refs:ic (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p7.cpp 13 void test_capture_constness(int i, const int ic) {
14 (void)[i,ic] ()->void {
16 float &fr2 = check_const_int(ic);
21 float &fr2 = check_const_int(ic);
24 (void)[i,ic] () mutable ->void {
26 float &fr = check_const_int(ic);
31 float &fr = check_const_int(ic);
34 (void)[&i,&ic] ()->void {
36 float &fr = check_const_int(ic);
41 float &fr = check_const_int(ic);
    [all...]
  /external/clang/test/CodeGen/
2002-02-13-UnnamedLocal.c 14 int foo(foostruct ic);
  /frameworks/base/core/java/com/android/internal/view/
IInputConnectionWrapper.java 196 InputConnection ic = mInputConnection.get(); local
197 if (ic == null || !isActive()) {
202 args.callback.setTextAfterCursor(ic.getTextAfterCursor(
212 InputConnection ic = mInputConnection.get(); local
213 if (ic == null || !isActive()) {
218 args.callback.setTextBeforeCursor(ic.getTextBeforeCursor(
228 InputConnection ic = mInputConnection.get(); local
229 if (ic == null || !isActive()) {
234 args.callback.setSelectedText(ic.getSelectedText(
244 InputConnection ic = mInputConnection.get() local
260 InputConnection ic = mInputConnection.get(); local
274 InputConnection ic = mInputConnection.get(); local
283 InputConnection ic = mInputConnection.get(); local
292 InputConnection ic = mInputConnection.get(); local
301 InputConnection ic = mInputConnection.get(); local
310 InputConnection ic = mInputConnection.get(); local
319 InputConnection ic = mInputConnection.get(); local
328 InputConnection ic = mInputConnection.get(); local
337 InputConnection ic = mInputConnection.get(); local
346 InputConnection ic = mInputConnection.get(); local
359 InputConnection ic = mInputConnection.get(); local
368 InputConnection ic = mInputConnection.get(); local
377 InputConnection ic = mInputConnection.get(); local
386 InputConnection ic = mInputConnection.get(); local
395 InputConnection ic = mInputConnection.get(); local
404 InputConnection ic = mInputConnection.get(); local
413 InputConnection ic = mInputConnection.get(); local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RichInputConnectionTests.java 133 final RichInputConnection ic = new RichInputConnection(mockInputMethodService); local
139 ic.beginBatchEdit();
141 r = ic.getWordRangeAtCursor(" ", 0);
145 r = ic.getWordRangeAtCursor(" ", 1);
147 ic.endBatchEdit();
151 ic.beginBatchEdit();
152 r = ic.getWordRangeAtCursor("\t", 1);
153 ic.endBatchEdit();
158 ic.beginBatchEdit();
159 r = ic.getWordRangeAtCursor("\t", 1)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Kerning.java 70 InputCapsule ic = im.getCapsule(this); local
71 second = ic.readInt("second", 0);
72 amount = ic.readInt("amount", 0);
BitmapCharacter.java 182 InputCapsule ic = im.getCapsule(this); local
183 c = (char) ic.readInt("c", 0);
184 x = ic.readInt("x", 0);
185 y = ic.readInt("y", 0);
186 width = ic.readInt("width", 0);
187 height = ic.readInt("height", 0);
188 xOffset = ic.readInt("xOffset", 0);
189 yOffset = ic.readInt("yOffset", 0);
190 xAdvance = ic.readInt("xAdvance", 0);
192 int[] seconds = ic.readIntArray("seconds", null);
    [all...]
BitmapCharacterSet.java 89 InputCapsule ic = im.getCapsule(this); local
90 lineHeight = ic.readInt("lineHeight", 0);
91 base = ic.readInt("base", 0);
92 renderedSize = ic.readInt("renderedSize", 0);
93 width = ic.readInt("width", 0);
94 height = ic.readInt("height", 0);
95 pageSize = ic.readInt("pageSize", 0);
96 int[] styles = ic.readIntArray("styles", null);
99 characters.put(style, readCharset(ic, style));
103 private IntMap<BitmapCharacter> readCharset(InputCapsule ic, int style) throws IOException {
    [all...]
  /external/valgrind/main/none/tests/s390x/
insert.stdout.exp 0 ic 0000000000000000 <- 0000000000000000 = 0000000000000000
2 ic 0000000000000001 <- 0000000000000000 = 0000000000000000
3 ic 000000000000FFFF <- 0000000000000000 = 000000000000FF00
4 ic 0000000000007FFF <- 0000000000000000 = 0000000000007F00
5 ic 0000000000008000 <- 0000000000000000 = 0000000000008000
6 ic 00000000FFFFFFFF <- 0000000000000000 = 00000000FFFFFF00
7 ic 0000000080000000 <- 0000000000000000 = 0000000080000000
8 ic 000000007FFFFFFF <- 0000000000000000 = 000000007FFFFF00
9 ic AAAAAAAAAAAAAAAA <- 0000000000000000 = AAAAAAAAAAAAAA00
10 ic 8000000000000000 <- 0000000000000000 = 800000000000000
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
UserData.java 133 InputCapsule ic = im.getCapsule(this); local
134 type = ic.readByte("type", (byte) 0);
138 value = ic.readInt("intVal", 0);
141 value = ic.readFloat("floatVal", 0f);
144 value = ic.readBoolean("boolVal", false);
147 value = ic.readString("strVal", null);
150 value = ic.readLong("longVal", 0l);
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
RenderState.java 363 InputCapsule ic = im.getCapsule(this); local
364 pointSprite = ic.readBoolean("pointSprite", false);
365 wireframe = ic.readBoolean("wireframe", false);
366 cullMode = ic.readEnum("cullMode", FaceCullMode.class, FaceCullMode.Back);
367 depthWrite = ic.readBoolean("depthWrite", true);
368 depthTest = ic.readBoolean("depthTest", true);
369 colorWrite = ic.readBoolean("colorWrite", true);
370 blendMode = ic.readEnum("blendMode", BlendMode.class, BlendMode.Off);
371 alphaTest = ic.readBoolean("alphaTest", false);
372 alphaFallOff = ic.readFloat("alphaFallOff", 0)
    [all...]
TechniqueDef.java 384 InputCapsule ic = im.getCapsule(this); local
385 name = ic.readString("name", null);
386 vertName = ic.readString("vertName", null);
387 fragName = ic.readString("fragName", null);
388 shaderLang = ic.readString("shaderLang", null);
389 presetDefines = (DefineList) ic.readSavable("presetDefines", null);
390 lightMode = ic.readEnum("lightMode", LightMode.class, LightMode.Disable);
391 shadowMode = ic.readEnum("shadowMode", ShadowMode.class, ShadowMode.Disable);
392 renderState = (RenderState) ic.readSavable("renderState", null);
393 usesShaders = ic.readBoolean("usesShaders", false)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderVariable.java 63 InputCapsule ic = im.getCapsule(this); local
64 name = ic.readString("name", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
Light.java 190 InputCapsule ic = im.getCapsule(this); local
191 color = (ColorRGBA) ic.readSavable("color", null);
192 enabled = ic.readBoolean("enabled", true);
193 name = ic.readString("name", null);
SpotLight.java 206 InputCapsule ic = im.getCapsule(this); local
207 spotInnerAngle = ic.readFloat("spotInnerAngle", FastMath.QUARTER_PI / 8);
208 spotOuterAngle = ic.readFloat("spotOuterAngle", FastMath.QUARTER_PI / 6);
209 direction = (Vector3f) ic.readSavable("direction", new Vector3f());
210 position = (Vector3f) ic.readSavable("position", new Vector3f());
211 spotRange = ic.readFloat("spotRange", 100);
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioNode.java 758 InputCapsule ic = im.getCapsule(this); local
763 if (ic.getSavableVersion(AudioNode.class) == 0){
764 audioKey = (AudioKey) ic.readSavable("key", null);
766 audioKey = (AudioKey) ic.readSavable("audio_key", null);
769 loop = ic.readBoolean("looping", false);
770 volume = ic.readFloat("volume", 1);
771 pitch = ic.readFloat("pitch", 1);
772 timeOffset = ic.readFloat("time_offset", 0);
773 dryFilter = (Filter) ic.readSavable("dry_filter", null);
775 velocity = (Vector3f) ic.readSavable("velocity", null)
    [all...]
AudioKey.java 132 InputCapsule ic = im.getCapsule(this); local
133 stream = ic.readBoolean("do_stream", false);
134 streamCache = ic.readBoolean("use_stream_cache", false);
LowPassFilter.java 90 InputCapsule ic = im.getCapsule(this); local
91 volume = ic.readFloat("volume", 0);
92 highFreqVolume = ic.readFloat("hf_volume", 0);
  /external/clang/test/SemaTemplate/
temp_func_order.cpp 61 void test_f4(int i, const int ic) {
63 float &fr1 = f4(ic);
72 void test_f5(int i, const int ic) {
82 void test_f6(int i, const int ic) {
84 float &fr = f6(ic, ic);
  /external/llvm/test/Bindings/Ocaml/
bitwriter.ml 15 let ic = open_in_bin name in
16 let len = in_channel_length ic in
19 test ((input ic buf 0 len) = len);
21 close_in ic;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 174 Word16 ic; local
223 ic = LSBs - ((LSBs >> 2) << 2);
226 pos_indx[index1] = ib + (ic & 1);
242 pos_indx[index2] = ib + (ic >> 1);
247 ic =
253 ic =
255 ic,
262 ic,
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
WaterFilter.java 349 InputCapsule ic = im.getCapsule(this); local
350 speed = ic.readFloat("speed", 1f);
351 lightDirection = (Vector3f) ic.readSavable("lightDirection", new Vector3f(0, -1, 0));
352 lightColor = (ColorRGBA) ic.readSavable("lightColor", ColorRGBA.White);
353 waterHeight = ic.readFloat("waterHeight", 0.0f);
354 waterColor = (ColorRGBA) ic.readSavable("waterColor", new ColorRGBA(0.0078f, 0.3176f, 0.5f, 1.0f));
355 deepWaterColor = (ColorRGBA) ic.readSavable("deepWaterColor", new ColorRGBA(0.0039f, 0.00196f, 0.145f, 1.0f));
357 colorExtinction = (Vector3f) ic.readSavable("colorExtinction", new Vector3f(5.0f, 20.0f, 30.0f));
358 waterTransparency = ic.readFloat("waterTransparency", 0.1f);
359 maxAmplitude = ic.readFloat("maxAmplitude", 1.5f)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
KeyFrame.java 71 InputCapsule ic = im.getCapsule(this); local
72 cinematicEvents = ic.readSavableArrayList("cinematicEvents", null);
73 index=ic.readInt("index", 0);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
AbstractControl.java 107 InputCapsule ic = im.getCapsule(this); local
108 enabled = ic.readBoolean("enabled", true);
109 spatial = (Spatial) ic.readSavable("spatial", null);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
SimpleLodThreshold.java 98 InputCapsule ic = im.getCapsule(this); local
99 size = ic.readInt("size", 16);
100 lodMultiplier = ic.readInt("lodMultiplier", 2);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
TextureKey.java 184 InputCapsule ic = im.getCapsule(this); local
185 flipY = ic.readBoolean("flip_y", false);
186 generateMips = ic.readBoolean("generate_mips", false);
187 asCube = ic.readBoolean("as_cubemap", false);
188 anisotropy = ic.readInt("anisotropy", 0);

Completed in 452 milliseconds

1 2 3 4 5 6 7 8